TypeScript - 数组 concat()



concat() 方法返回一个新数组,该数组由当前数组与两个或多个数组连接组成。

语法

array.concat(value1, value2, ..., valueN);

参数详情

valueN − 要连接到结果数组的数组和/或值。

返回值

返回一个新数组。

示例

var alpha = ["a", "b", "c"]; 
var numeric = [1, 2, 3];

var alphaNumeric = alpha.concat(numeric); 
console.log("alphaNumeric : " + alphaNumeric );

编译后,它将生成相同的 JavaScript 代码。

其输出如下:

alphaNumeric : a,b,c,1,2,3
typescript_arrays.htm
广告