Hello,
I have the following string
[null,null,null],["Paul","2293",1],["eric","2099",0]
which I will define as:
var dataparsed ='[null,null,null],["Paul","2293",1],["eric","2099",0]';
and would like to construct three different arrays in the following format:
var opponentName = new Array(null, "Paul","eric");
var numberVal =new Array(null, 2293,2099);
var outComeVal = new Array(null, 1,0);
Any ideas on how this can be done in Javascript?
I appreciate any thoughts on this.
Mossa--