remove space from string regex js code example
Example 1: remove all spaces from a string javascript
.replace(/ /g,'')
Example 2: remove whitespace with regex javascript
return str.replace(/\s/g, '');
.replace(/ /g,'')
return str.replace(/\s/g, '');