Search Results

6
votes

Javascript: extending map objects

It's dangerous to modify Object.prototype, because it affects all objects and will usually break other li …
1
vote

Inheritance in Javascript - protoyping not in definition-part?

prototype is only a meaningful property of constructors. The object's actual prototype (which is accessible in some environments as the property __proto__, but this is no …
2
votes

Do Javascript prototypes have something equivalent to Lua’s __index & __newindex?

Just FYI: Firefox supports a non-standard __noSuchMethod__ …