Skip to content

Instantly share code, notes, and snippets.

@leongersing
Created December 16, 2009 17:08
Show Gist options
  • Save leongersing/257991 to your computer and use it in GitHub Desktop.
Save leongersing/257991 to your computer and use it in GitHub Desktop.
var person = {name:"", email:"", age:0, changeSexTo:function(sex){
this.sex = sex;
}};
var man = {sex:"male"};
var woman = {sex:"female"}
woman.__proto__ = man.__proto__ = person;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment