在JavaScript中,如果你想将两个数组相加,可以使用数组的concat()方法或者扩展运算符(...)来实现。以下是两种方法的示例代码:
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const combinedArray = array1.concat(array2);
console.log(combinedArray);
输出:
[1, 2, 3, 4, 5, 6]
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const combinedArray = [...array1, ...array2];
console.log(combinedArray);
输出:
[1, 2, 3, 4, 5, 6]
这两种方法都可以将两个数组合并成一个新的数组。请确保你的代码中没有其他语法错误或逻辑错误,例如变量名拼写错误、缺少分号等。如果你的代码仍然无法正常工作,请提供更多的代码和错误信息,以便我们能够更好地帮助你解决问题。
领取专属 10元无门槛券
手把手带您无忧上云