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
You can split and convert like
var strVale = "130,235,342,124 "; var intValArray=strVale.split(','); for(var i=0;i
Now you can use intValArray in you logic.