javascript string remove space in between the string code example
Example 1: remove space from string javascript
var str = " Hello World! ";
alert(str.trim());
Example 2: delete space from string javascript
var str = "470 ";
str.trim();