remove whitespaces from string js code example
Example 1: remove all spaces from a string javascript
.replace(/ /g,'')
Example 2: remove whitespace javascript
var str = " Some text ";
str.trim();
Example 3: javascript whitespace strip
yourvariable.trim()