js remove any space code example
Example 1: js remove space from string
string.split(" ").join("")
Example 2: remove extra space in string js
newString = string.replace(/\s+/g,' ').trim();
string.split(" ").join("")
newString = string.replace(/\s+/g,' ').trim();