Skip to content

Instantly share code, notes, and snippets.

@radvieira
Created March 8, 2013 18:17
Show Gist options
  • Save radvieira/5118583 to your computer and use it in GitHub Desktop.
Save radvieira/5118583 to your computer and use it in GitHub Desktop.
Master class - Prototypes
var Person = function(name) {
this.name = name;
};
Person.prototype.getName = function() {
return this.name;
};
var thomas = new Person('Thomas');
var amy = new Person('Amy');
thomas.name;
thomas.getName.call(amy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment