split js remove space code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: javascript split and trim
var arr = str.split(",").map(item => item.trim());
str.replace(/\s+/g, '')
var arr = str.split(",").map(item => item.trim());