i have 2 2D array, and want to merge a[0] with b[0]
var a=[["a","b","c"],["d","e","f"]];
var b=[["1","2","3"],["4","5","6"]];
console.log(a[0].splice(1,2,b[0]));
its return ["a",["1","2","3"]]
i need to archive ["a","1","2","3"] for a[0]
can any body show how ?