remove any space in string in js code example
Example 1: js remove space from string
string.split(" ").join("")
Example 2: remove all spaces from a string javascript
.replace(/ /g,'')
string.split(" ").join("")
.replace(/ /g,'')