JavaScript Split String на массив за запятой и пространством
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma
Powerful Penguin
input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma