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