javascript remove spaces from srtin code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: remove space from string javascript
var str = " Hello World! ";
alert(str.trim());
str.replace(/\s+/g, '')
var str = " Hello World! ";
alert(str.trim());