Skip to content

Instantly share code, notes, and snippets.

@aaronpowell
Created March 14, 2012 00:42
Show Gist options
  • Select an option

  • Save aaronpowell/2033034 to your computer and use it in GitHub Desktop.

Select an option

Save aaronpowell/2033034 to your computer and use it in GitHub Desktop.
var Person = function (name) {
if (!name) throw new Error("The 'name' parameter is required.");
this.sayHello = function () {
console.log('Hello ' + name);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment