Skip to content

Instantly share code, notes, and snippets.

@vestige
Created April 24, 2012 13:09
Show Gist options
  • Save vestige/2479519 to your computer and use it in GitHub Desktop.
Save vestige/2479519 to your computer and use it in GitHub Desktop.
44.js
var Person = function(name) {
this.name = name;
};
Person.prototype.say = function () {
return "I am " + this.name;
};
var adam = new Person("Adam");
document.writeln(adam.say());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment