ecmascript string trim 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
value = value.trim();
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed