javascript remove whitespace from string code example
Example 1: javascript remove all whitespaces
var spacesString= "Do I have spaces?";
var noSpacesString= myString.replace(/ /g,'');
Example 2: remove all spaces from a string javascript
.replace(/ /g,'')
Example 3: remove whitespace with regex javascript
return str.replace(/\s/g, '');
Example 4: javascript remove space from string
const removeSpaces = str => str.replace(/\s/g, '');
removeSpaces('hel lo wor ld');
Example 5: js remove space before string
var str = " Some text ";
str.trim();
Example 6: remove whitespace javascript
var str = " Some text ";
str.trim();