Skip to content

Instantly share code, notes, and snippets.

@basekays
Created August 2, 2016 06:17
Show Gist options
  • Select an option

  • Save basekays/bc02bee8fbbcfdee33cc80f8acd1c8bf to your computer and use it in GitHub Desktop.

Select an option

Save basekays/bc02bee8fbbcfdee33cc80f8acd1c8bf to your computer and use it in GitHub Desktop.
function Penguin(name) {
this.name = name;
this.numLegs = 2;
}
function Emperor(name) {
this.name = name;
};
Emperor.prototype = new Penguin();
var emperor = new Emperor("Kay");
console.log(emperor.numLegs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment