gpt4 book ai didi

Javascript函数通过不同的调用求和

转载 作者:行者123 更新时间:2023-11-28 17:11:07 25 4
gpt4 key购买 nike

我应该如何使这个函数适用于不同的调用?

查看警报中的来电:

function summ(a){
return function(b){
return a+b
}
}

alert(summ(5)(10)) //work
alert(summ(5,10)) // not work

最佳答案

function summ(a,b){
if (typeof b !== "undefined") { // check if b is present.
return a+b;
}
else { // b is not there, return another function that `capture` a
return function(b){
return a+b;
}
}
}

alert(summ(5)(10)) // work
alert(summ(5,10)) // work

基本上,您想要的函数 summ 必须能够处理两种不同的场景。

如果 b 不存在,您的函数需要返回另一个嵌入了 a 值的函数。

如果存在 b,则返回 a+b 作为普通函数。

关于Javascript函数通过不同的调用求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54396928/

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