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