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