how to trim the string in javascript code example
Example 1: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed
Example 2: remove space from string javascript
var str = " Hello World! ";
alert(str.trim());