Javascript Split String em matriz por vírgula e espaço

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