JavaScript Split String en matriz por coma y espacio

input.split(/[ ,]+/); //splits string using RegEx on a space OR a comma
Powerful Penguin