javascript split string and remove whitespace code example
Example 1: js remove space from string
string.split(" ").join("")
Example 2: javascript split and trim
var arr = str.split(",").map(item => item.trim());
string.split(" ").join("")
var arr = str.split(",").map(item => item.trim());