concat()方法连接两个或更多的数组,并返回结果。
concat() - 语法
array.concat(value1, value2, ..., valueN);
valueN - 要连接到输出数组的数组和/或值。
concat() - 返回值
返回一个新数组。
concat() - 示例
var alpha=["a", "b", "c"]; var numeric=[1, 2, 3]; var alphaNumeric=alpha.concat(numeric); console.log("alphaNumeric : " + alphaNumeric );
运行上面代码输出
alphaNumeric : a,b,c,1,2,3
参考链接
https://www.learnfk.com/es6/es6-array-method-concat.html
标签:教程,无涯,numeric,alphaNumeric,数组,var,alpha,concat From: https://blog.51cto.com/u_14033984/9561962