var a = [4,5,6];var b = [7,8,9];Array.prototype.push.apply(a, b);uneval(a); // is: [4, 5, 6, 7, 8, 9]