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