gpt4 book ai didi

javascript - 编写一个接受数字数组的 sum() 函数

转载 作者:行者123 更新时间:2023-11-30 09:19:55 25 4
gpt4 key购买 nike

有人可以向我解释一下我在这里做错了什么......这段代码来自 Eloquent javascript,它工作正常

function sum(array) {
let total = 0;
for (let value of array) {
total += value;
}
return total;
}

这就是我为练习写的但返回 NaN..

function sum(numArray) { 
let add = 0;
for (let a = 0; a <= numArray.length; a++) {
let addIndex = numArray[a];
add += addIndex;
}
return add;
}

最佳答案

您的 for 循环超出了数组索引。你必须使用:

a < numArray.length

代替:

a <= numArray.length

关于javascript - 编写一个接受数字数组的 sum() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52409761/

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