i have three array column wise using which i am trying to create array row wise using java-script like this. Do i need to traverse through complete data?
what i have
var a=new Array("1","2","3","4");
var b=new Array("5","6","7","8");
var c=new Array("9","10","11","12");
what i want to create using the above array
var d=new Array("1","5","9");
var e=new Array("2","6","10");
var f=new Array("3","7","11");
var g=new Array("4","8","12");