ES6 concat() 数组方法 ES6 数组Array构造方法(函数) ES6 every() 数组方法 ES6 concat() 数组方法 var alpha = ["a", "b", "c"]; var numeric = [1, 2, 3]; var alphaNumeric = alpha.concat(numeric); console.log("alphaNumeric : " + alphaNumeric ); ES6 数组Array构造方法(函数) ES6 every() 数组方法