Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in prototype-programming

What are pitfalls of extending Object.prototype? [duplicate]

Sub.prototype = new Base() vs Sub.prototype = Base.prototype [duplicate]

Why prototypes manually initialized to null still inherit from Object

how to overwrite a builtin method of javascript native objects

Javascript array extension method gets iterated in for loop

Javascript strict equality strangeness

Javascript prototype and __proto__ and getPrototypeOf issue

Passing a prototype's function as parameter without losing the 'this' context

Why "String.prototype={}" won't work?

I can't extend the String prototype in javascript

Prototypical inheritance without new or Object.create

how many copies of the inner function will be created

JS Prototypal Inheritance: childs use the same parent properties?

In Javascript, why is there no "prototype" property for an instance or object literal?

Is there a good use case for the constructor property in Javascript?

Javascript literal vs function oop

Javascript dynamically getter/setter for private properties

does the depth of the prototype chain for an object affect the performance?

difference between using this and prototype to define methods of a class in JavaScript? [duplicate]