Skip to content

Instantly share code, notes, and snippets.

@leongersing
Created December 16, 2009 20:02
Show Gist options
  • Save leongersing/258119 to your computer and use it in GitHub Desktop.
Save leongersing/258119 to your computer and use it in GitHub Desktop.
function Person(){
this.name = arguments[0] || "name";
this.email = arguments[1] || "foo@foo.com";
}
function Man(){
this.sex = "male";
}
Man.prototype = new Person();
document.write(new Man().sex);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment