gpt4 book ai didi

javascript - 为什么 JS 原型(prototype)方法可以在没有 .cal() 或 .apply() 的情况下工作?

转载 作者:行者123 更新时间:2023-12-03 00:24:23 25 4
gpt4 key购买 nike

据我所知,JavaScript 中对象的原型(prototype)方法需要上下文,因此我们应该使用 callapply 来调用它们。

但是,Array.prototype 方法无需使用 callapply 即可工作。

Array.prototype.concat(1, 2, 3) // [1,2,3]

最佳答案

示例中的上下文已经存在。它是Array.prototype。正如我们所记得的上下文,它是点之前的一个对象:

我们可以像这样重写您的示例,并给出相同的结果:

console.log([].concat.call(Array.prototype,[1,2,3]))

关于javascript - 为什么 JS 原型(prototype)方法可以在没有 .cal() 或 .apply() 的情况下工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54157788/

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