Skip to content

Instantly share code, notes, and snippets.

@tschmidt
Created April 7, 2011 13:06
Show Gist options
  • Save tschmidt/907746 to your computer and use it in GitHub Desktop.
Save tschmidt/907746 to your computer and use it in GitHub Desktop.
var Person = function (name) {
this.name = name;
}
Person.prototype.getName = function () {
console.log(this.name);
}
var thomas = new Person("Thomas");
var amy = new Person("Amy")
thomas.getName();
thomas.getName.call(amy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment