Method Chaining

 let str="   abhiiII    ";

console.log(str);
let name=str.toUpperCase().trim();
console.log(name);

let name2=str.toLowerCase().trim();
console.log(name2);

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code