split string by comma node js code example
Example 1: javascript split string into array by comma and space
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma
Example 2: javascript explode space
var str = "my car is red";
var stringArray = str.split(/(\s+)/);
console.log(stringArray); // ["my", " ", "car", " ", "is", " ", "red"]