Tagged Questions
0
votes
1answer
54 views
JavaScript multiple inheritance and instanceof [duplicate]
Possible Duplicate:
Javascript multiple inheritance
Is there a way in JavaScript to do this:
Foo = function() {
};
Bar = function() {
};
Baz = function() {
Foo.call(this);
...
1
vote
1answer
99 views
Partial inheritance - Share Primitive Values between Objects
I dindn't knew a better title, so to explain it,
lets say you have a 'constructor' which
Instantiates an Object and sets some properties
In the process of Instatiation annother Object is created
...
1
vote
1answer
284 views
Why is there no Object.setPrototypeOf(…) in ECMAScript standard?
Apparently using __proto__ property is still the main way of manipulating prototype chains, even though this is not standards compliant and IE does not support it. Though you can also construct ...
0
votes
1answer
181 views
Custom prototype chain for a function
I am just curious whether I can include an object into function prototype chain. What I mean:
var test = function() { return 'a'; };
console.log(test.bind(this)); // return new bound function
// ...
0
votes
1answer
406 views
“indexOf” as key of array in “for … in” cicle in IE8
I used the code described here but now, when I do a "for ... in ..." cicle, it gets the function "indexOf" as an index position of the array...
Example Code:
var the_array=new Array(); ...
5
votes
4answers
1k views
How can I define a default getter and setter using ECMAScript 5?
How can I specify a default getter for a prototype?
With default getter I mean a function that is called if obj.undefinedProperty123 is called.
I tried Object.prototype.get = function(property) {..} ...
