concat()方法用于合并两个或更多个数组。此方法不会更改现有的数组,而是返回一个新的数组。var a=[1,2,3];var b=[4,5,6];console.log(a.concat(b));结果如下: 字符串也是一样