Prototype Pattern:

http://scotch.io/amp/bar-talk/4-javascript-design-patterns-you-should-know/


var TeslaModelS = function() {
this.numWheels = 4;
this.manufacturer = 'Tesla';
this.make = 'Model S';
}

TeslaModelS.prototype = function() {

var go = function() {
// Rotate wheels
};

var stop = function() {
// Apply brake pads
};

return {
pressBrakePedal: stop,
pressGasPedal: go
}

}();