var alpha = ['a', 'b', 'c']; var alphaNumeric = alpha.concat(1, [2, 3]); console.log(alphaNumeric); // 結果:['a', 'b', 'c', 1, 2, 3]
確定! 回上一頁