Search Results

2
votes

JavaScript: correct prototype chain for Function

To answer your question directly: Mozilla is right. Not only because Brendan Eich works for Mozilla, but because this is the only right way to do it. Let's go over details: Every cons …
0
votes

JavaScript implementation that allows access to [[Call]]

It is not possible yet: [[Call]] is hidden and not directly available in all conformat implementations. It may change in the …
6
votes

Relation between [[Prototype]] and prototype in JavaScript

To answer your question directly: logically it is an object's private copy of the prototype property of its constructor. Using metalanguage this is how objects are created: …