var one = ["a", "b"]; var two = ["c", "d"]; var three = one.concat(two); alert(three);
abcd
a,b,c,d
c,d,a,b
error