最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Why do we have Function.call in javascript? - Stack Overflow

programmeradmin0浏览0评论
> 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).

Share Improve this question edited Jan 15, 2016 at 9:33 thefourtheye 240k53 gold badges465 silver badges500 bronze badges asked Jan 15, 2016 at 9:06 Louay AlakkadLouay Alakkad 7,4082 gold badges24 silver badges45 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 18

Because 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 Functions 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 but Array.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.

发布评论

评论列表(0)

  1. 暂无评论