Skip to content

Instantly share code, notes, and snippets.

View ganesharulanantham's full-sized avatar

Ganesh Arulanantham ganesharulanantham

View GitHub Profile
@ganesharulanantham
ganesharulanantham / prototype.js
Created September 29, 2017 18:18
Learn and experiment prototype design
/**
* Created by ganesharulanantham on 28/09/17.
*/
var TeslaModelS = function() {
this.numWheels = 4;
this.manufacturer = 'Tesla';
this.make = 'Model S';
}