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