gpt4 book ai didi

Javascript 调用和应用方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:54:32 24 4
gpt4 key购买 nike

我对这段代码感到困惑:

Function.prototype.apply.call(Math.floor, undefined, [1.75]);//1

我读了这篇文章 javascript apply and call methods and chain together并且我理解将 apply 和 call 方法链接在一起的意义。

但是,我仍然对语法感到困惑。 call 的正确语法是 function.call(thisArg, arg1, arg2, ...)。但是在这种情况下,为什么调用方法可以带这三个参数(targetthisArgumentargumentsList),这与 Reflect.apply(target, thisArgument, argumentsList) 相同吗?

最佳答案

实际上,调用方法可以将所有逗号分隔的参数传递给被调用方法。正如您在此处看到的那样 (target, thisArgument, argumentsList) 第二个两个参数用作 apply 方法的参数,我们知道 apply 方法需要一个参数数组,我们已将第三个参数作为数组发送。

所以这里的执行可以简化为:

Math.floor.apply(undefined, [1.75]);

或者简单地 Math.floor(1.75)//Obv with undefined as reference of this

关于Javascript 调用和应用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48675793/

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