trim spaces js code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: javascript trim spaces
value = value.trim();
Example 3: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed
Example 4: javascript whitespace strip
yourvariable.trim()