javascript trim string code example
Example 1: js remove space before string
var str = " Some text ";
str.trim();
Example 2: javascript trim spaces
value = value.trim();
Example 3: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();
Example 4: how to remove spaces from strings javascript
var str = '/var/www/site/Brand new document.docx';
document.write( str.replace(/\s/g, '') );
Example 5: javascript whitespace strip
yourvariable.trim()
Example 6: js trim()
var str = ' foo ';
console.log(str.trim());
var str= 'foo ';
console.log(str.trim());