Skip to content

Instantly share code, notes, and snippets.

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