Skip to content

Instantly share code, notes, and snippets.

@colus001
Created June 21, 2017 09:28
Show Gist options
  • Save colus001/4aaaebd7efc464f3851e0961d8144159 to your computer and use it in GitHub Desktop.
Save colus001/4aaaebd7efc464f3851e0961d8144159 to your computer and use it in GitHub Desktop.
Simple prototype inheritance
function Person () {
this.race = 'human'
}
function Japanese () {
this.lang = 'Japanese'
}
Japanese.prototype = new Person()
var j = new Japanese()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment