String Methods-Trim method

 let str="    abhi   ";

// TRIM METHOD- It doesnot not change the original string but creates a new string woth changes applied

 console.log(str); //-O/P:     abhi  

console.log(str.trim()); //O/P:abhi

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code