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