js var value trim code example
Example 1: how to remove spaces from strings javascript
var str = '/var/www/site/Brand new document.docx';
document.write( str.replace(/\s/g, '') );
Example 2: javascript whitespace strip
yourvariable.trim()
var str = '/var/www/site/Brand new document.docx';
document.write( str.replace(/\s/g, '') );
yourvariable.trim()