Practice

let str="ApnaCollege"
console.log(str);
console.log(str.slice(4).replace("l","t"));
console.log(str.slice(4).replace("l","t").replace("l","t"));

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code