gpt4 book ai didi

javascript - 为什么 return 语句中的 push 方法抛出错误但 concat 有效?

转载 作者:行者123 更新时间:2023-12-03 07:18:12 26 4
gpt4 key购买 nike

<分区>

能否请您帮助我理解为什么在以下代码的返回语句中使用 push 会抛出错误,而 concat 按预期工作。在这两种情况下,累加器都是大批。如果我将 pushreturn 语句分开,它会按预期工作。

let flattened = [
[0, 1],
[2, 3],
[4, 5]
].reduceRight(function(a, b) {
return a.push(b);
}, []);
console.log(flattened)

let flattened = [
[0, 1],
[2, 3],
[4, 5]
].reduceRight(function(a, b) {
return a.concat(b);
}, []);
console.log(flattened)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com