split comma separated list of string in javascript and store in array code example
Example: javascript split string into array by comma and space
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma