http://javascriptissexy.com/javascript-prototype-in-plain-detailed-language/
http://sporto.github.io/blog/2013/02/22/a-plain-english-guide-to-javascript-prototypes/
1. First, there is a prototype property that every JavaScript function has (it is empty by default), and you attach properties and methods on this prototype property when you want to implement inheritance.Note that this prototype property is not enumerable: it is not accessible in a for/in loop. The prototype property is used primarily for inheritance: you add methods and properties on a function’s prototype property to make those methods and properties available to instances of that function.
2. The second concept with prototype in JavaScript is the prototype attribute. Think of the prototype attribute as a characteristic of the object; this characteristic tells us the object’s “parent”. In simple terms: An object’s prototype attribute points to the object’s “parent”—the object it inherited its properties from. The prototype attribute is normally referred to as the prototype object
Prototype is important in JavaScript because JavaScript does not have classical inheritance based on Classes (as most object oriented languages do), and therefore all inheritance in JavaScript is made possible through the prototype property. JavaScript has a prototype-based inheritance mechanism.
function Plant () { this.country = "Mexico"; this.isOrganic = true; } // Add the showNameAndColor method to the Plant prototype property Plant.prototype.showNameAndColor = function () { console.log("I am a " + this.name + " and my color is " + this.color); } // Add the amIOrganic method to the Plant prototype property Plant.prototype.amIOrganic = function () { if (this.isOrganic) console.log("I am organic, Baby!"); } function Fruit (fruitName, fruitColor) { this.name = fruitName; this.color = fruitColor; } // Set the Fruit's prototype to Plant's constructor, thus inheriting all of Plant.prototype methods and properties. Fruit.prototype = new Plant (); // Creates a new object, aBanana, with the Fruit constructor var aBanana = new Fruit ("Banana", "Yellow"); // Here, aBanana uses the name property from the aBanana object prototype, which is Fruit.prototype: console.log(aBanana.name); // Banana // Uses the showNameAndColor method from the Fruit object prototype, which is Plant.prototype. The aBanana object inherits all the properties and methods from both the Plant and Fruit functions. console.log(aBanana.showNameAndColor()); // I am a Banana and my color is yellow.
Prototype is also important for accessing properties and methods of objects. The prototype attribute (or prototype object) of any object is the “parent” object where the inherited properties were originally defined. if you want to access a property of an object, the search for the property begins directly on the object. If the JS runtime can’t find the property there, it then looks for the property on the object’s prototype—the object it inherited its properties from.This in essence is the prototype chain
var myFriends = {name: "Pete"}; // To find the name property below, the search will begin directly on the myFriends object and will immediately find the name property because we defined the property name on the myFriend object. This could be thought of as a prototype chain with one link. console.log(myFriends.name); // In this example, the search for the toString () method will also begin on the myFriends’ object, but because we never created a toString method on the myFriends object, the compiler will then search for it on the myFriends prototype (the object which it inherited its properties from). // And since all objects created with the object literal inherits from Object.prototype, the toString method will be found on Object.prototype—see important note below for all properties inherited from Object.prototype. myFriends.toString ();
When it comes to inheritance, JavaScript only has one construct: objects. Each object has an internal link to another object called its prototype. That prototype object has a prototype of its own, and so on until an object is reached with null as its prototype. By definition, null has no prototype, and acts as the final link in this prototype chain.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain
var o = {a: 1}; // The newly created object o has Object.prototype as its [[Prototype]] // o has no own property named 'hasOwnProperty' // hasOwnProperty is an own property of Object.prototype. // So o inherits hasOwnProperty from Object.prototype // Object.prototype has null as its prototype. // o ---> Object.prototype ---> null var a = ["yo", "whadup", "?"]; // Arrays inherit from Array.prototype // (which has methods like indexOf, forEach, etc.) // The prototype chain looks like: // a ---> Array.prototype ---> Object.prototype ---> null function f() { return 2; } // Functions inherit from Function.prototype // (which has methods like call, bind, etc.) // f ---> Function.prototype ---> Object.prototype ---> null