concat 方法用于连接两个或多个数组,语法如下:
array_object.concat( array_1, array_2, ... )
该方法不会改变被连接的原始数组,返回的是被连接数组的一个副本(新的数组)。
0