skip space in string javascript code example
Example 1: js remove space from string
string.split(" ").join("")
Example 2: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed
string.split(" ").join("")
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed