javascript remove blank spaces from a string code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: remove blank space javascript
str.replaceAll(/\s/g,'')
.replace(/ /g,'')
Example 3: remove space from string javascript
var str = " Hello World! ";
alert(str.trim());