how to remove whitespace in javascript for string code example
Example 1: js remove space from string
string.split(" ").join("")
Example 2: remove whitespace javascript
var str = " Some text ";
str.trim();
string.split(" ").join("")
var str = " Some text ";
str.trim();