gpt4 book ai didi

javascript - 带动态参数的递归

转载 作者:数据小太阳 更新时间:2023-10-29 04:33:19 26 4
gpt4 key购买 nike

<分区>

这是一道面试题,我还没弄明白。请考虑以下事项:

function recurse(a) {
return function(b) {
console.log(a + b);
}
}

//This will log '5' in the console
recurse(2)(3);

现在我被要求编写一个函数,它将接受 n 个参数,并通过记录参数值的最终总和以相同的方式工作。含义:

//This should log '13'
recurse(2)(3)(1)(7)

这样的函数怎么写?我曾尝试从递归、动态参数等方面考虑它。但一直无法写下任何具体内容。

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