The prototype-chain tag has no wiki summary.
0
votes
4answers
30 views
How are properties shared across instances using javascript prototypes
My understanding of prototypical inheritance is every object has a prototype property. If a property doesn't exist on an object then it's prototype object is checked, so on and so on up the chain.
In ...
1
vote
2answers
48 views
Is there a way to hide Object.prototype's property?
If I add a property to Object.prototype like
Object.prototype.sth = "something";
then, is there a way to hide the property for a specified object?
I tried like this:
function Foo() {
// sth...
}
...
1
vote
1answer
30 views
Retrieve top level prototype in the javascript prototype chain
Hi I was wondering if there was a "cleverer" way of retrieving the top level (or any number of levels from the top) prototype in the javascript prototype chain.
The problem is that given:
var a = ...
5
votes
1answer
65 views
What's the relationship between Number and Function.prototype in javascript?
I'm reading the book Javascript: the Good Parts. I'm a little confused when I read the code below:
Function.prototype.method = function (name, func) {
this.prototype[name] = func;
return ...
0
votes
4answers
44 views
Combining javascript prototype styles
Is it possible to combine the following
function something() {}
function somethingElse() {}
somethingElse.prototype = new something();
somethingElse.prototype.someFunction = function() {}
...
with ...
0
votes
2answers
53 views
Behavior of primitive types in prototypes
Every instance have a link to prototype of the constructor using which it is created. So every instance shares the prototype members. If a change to the shared prototype member is made through one ...
0
votes
2answers
89 views
Working with javascript prototype inheritance
Why does this work....
function Person(name) {
this.name = name;
}
Person.prototype.speak = function() {
alert(this.name);
}
var person = new Person("fred");
person.speak();
But not ...
5
votes
1answer
121 views
Object class comes twice in prototype chain of DOMWindow?
Why do we have 2 class Object and again Object in prototype chain of window?
window --> DOMWindow --->Object --->Object ---> null
Can anyone please give me some point about this design?
Follwing is ...
1
vote
1answer
88 views
when is a method on an object's prototype chain callable?
Consider this code...
var org = {};
org.Organization = function() {
var app = null;
function setupApplication() {};
return {
init : function() {
...
1
vote
2answers
138 views
does the depth of the prototype chain for an object affect the performance?
Several days ago,I post a question here about class inheritance
Then someone provide a link-- a clever script for class inheritance by John Resig.
Then I try to use this script.
But I found that ...