方法: 数组.concat(追加的数组); 示例: var a = [1,2,3]; var b = [4,5,6]; conslle.log(a.concat(b)); // 输出结果:[1,2,3,4,5,6]