Hi
I have problem concatenating two associative arrays in javascript. below the sample code
var firstArray = new Array();
firstArray.c1 = "sam";
firstArray.c2 = "kam";
var secArray = new Array();
secArray.c3 = "sam";
secArray.c4 = "kam";
var res = firstArray.concat(secArray);
is this a known limitation??
whats the best way to achive this one..
Cheers
Ramesh Vel