The following JavaScript code is very confusing to me. Could anyone help me understand. Why does PersonY not have prototype property.
PersonX = function(){};
PersonY = new function(){};
alert(PersonX.prototype);
alert(PersonY.prototype);
|
The following JavaScript code is very confusing to me. Could anyone help me understand. Why does PersonY not have prototype property.
|
|||
Places a reference to an anonymous function into
Places a reference to a newly constructed instance of an anonymous constructor function into Regarding the prototype, You can actually check *Not really blank since prototype is a chain. This prototype level may be blank, but the next higher prototype may have, or in this case, does have properties and methods.
|
|||||||||
|
|
|
That's because it is actually a object instantiated in memory as a copy of the function; the prototype really only has meaning in the context of a creation of the instance, so once it is created, there is no logical construct for what that means. |
|||
|
|
function, notnew function. – Matt Ball May 11 '12 at 19:08