remove all spaces and symbold from string javascript code example
Example 1: remove all spaces from a string javascript
.replace(/ /g,'')
Example 2: Delete spaces in text in javascript
var a = b = " /var/www/site/Brand new document.docx ";
console.log( a.split(' ').join('') );
console.log( b.replace( /\s/g, '') );