Skip to content

Instantly share code, notes, and snippets.

@johnfmorton
Created October 19, 2010 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnfmorton/634905 to your computer and use it in GitHub Desktop.
Save johnfmorton/634905 to your computer and use it in GitHub Desktop.
var Person = function(name) {
this.name = name;
}
Person.prototype.getName = function() {
return this.name;
}
var thomas = new Person("thomas")
var amy = new Person("amy")
console.log(thomas.name);
console.log(amy.name);
console.log(thomas.getName());
console.log(thomas.getName.call(amy));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment