常见的合并数组方法:concat();a=[1,2,3,4,5,6]b=["foo","bar","bam","bun","fun"]var c=a.concat(b);
输出结果:c=[1,2,3,4,5,6,"foo","bar","bam","bun","fun"]