I have a one-dimensional array of integer in JavaScript that I\'d like to add data from comma separated string, Is there a simple way to do this?
e.g : var strVale
var strVale
The split() method is used to split a string into an array of substrings, and returns the new array.
Syntax: string.split(separator,limit) arr = strVale.split(',');
SEE HERE