Skip to content

Instantly share code, notes, and snippets.

@leongersing
Created December 16, 2009 17:04
Show Gist options
  • Save leongersing/257990 to your computer and use it in GitHub Desktop.
Save leongersing/257990 to your computer and use it in GitHub Desktop.
function person(name, email, age){
this.name = name;
this.email = email;
this.age = age;
}
leon = new person("Leon", "foo@foo.com", 32);
leon.email // foo@foo.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment