admin管理员组文章数量:1344944
> Function.call == Function.prototype.call
true
> Function.prototype == Function
false
Why do Function.prototype.*
methods exist as Function.*
? It seems inconsistent.
This isn't the case with any other primary type (Array.slice
doesn't exist but Array.prototype.slice
does).
> Function.call == Function.prototype.call
true
> Function.prototype == Function
false
Why do Function.prototype.*
methods exist as Function.*
? It seems inconsistent.
This isn't the case with any other primary type (Array.slice
doesn't exist but Array.prototype.slice
does).
1 Answer
Reset to default 18Because Function
itself is the prototype of Function
console.log(Function instanceof Function);
console.log(Object.getPrototypeOf(Function) === Function.prototype);
So, all the functions in the Function
s prototype are available in Function
also.
Quoting the specification,
The Function prototype object is itself a Function object (its [[Class]] is "Function")
Another way to confirm this would be,
console.log(Function.call === Function.prototype.call);
it means that the Function.call
object and Function.prototype.call
object are the same.
console.log(Function.hasOwnProperty('call'));
it means that the Function
object itself doesn't have call
property.
console.log(Function.prototype.hasOwnProperty('call'));
it means that Function.prototype
object has the call
property.
Array.slice
doesn't exist butArray.prototype.slice
do
Because Array
function's prototype is Function
object, not the Array
object.
console.log(Object.getPrototypeOf(Array) === Function.prototype);
That is why we get call
, apply
, bind
etc on the Array
function. It Array
object had been the prototype of Array
, then slice
would have been available on the Array
object also.
本文标签: Why do we have Functioncall in javascriptStack Overflow
版权声明:本文标题:Why do we have Function.call in javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743805541a2542112.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论