javascript split on whitespace code example
Example 1: js split text on spaces
var string = "text to split";
var words = string.split(" ");
Example 2: javascript split string into array by comma and space
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma