JavaScript prototype

From Wiki @ Karl Jones dot com
Revision as of 13:12, 11 November 2016 by Karl Jones (Talk | contribs) (External links)

Jump to: navigation, search

In JavaScript, a prototype is a property of objects

Description

All objects in JavaScript are descended from Object; all objects inherit methods and properties from Object.prototype, although they may be overridden (except an Object with a null prototype, i.e. Object.create(null)). For example, other constructors' prototypes override the constructor property and provide their own toString() methods.

Changes to the Object prototype object are seen by all objects through prototype chaining, unless the properties and methods subject to those changes are overridden further along the prototype chain. This provides a very powerful although potentially dangerous mechanism to override or extend object behavior.

See also

External links