gpt4 book ai didi

javascript - ES6 剩余参数代码不起作用

转载 作者:行者123 更新时间:2023-12-01 01:49:31 24 4
gpt4 key购买 nike

为什么这段代码没有求和?我正在尝试使用 javascript ...rest 参数

function sum(...nums) {  
let total = 0;
for(const num of nums) {
total += num;
}
return total;
}

sum(10, 36, 7, 84, 90, 110);

最佳答案

你的代码工作得很好。您只是没有实际将结果输出到任何地方:

function sum(...nums) {
let total = 0;
for(const num of nums) {
total += num;
}
return total;
}

let res = sum(10, 36, 7, 84, 90, 110);

console.log(`Total: ${res}`);

关于javascript - ES6 剩余参数代码不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51662686/

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