Skip to content

Instantly share code, notes, and snippets.

@jordic
Created January 29, 2015 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordic/c597dffdd18a4d289e6b to your computer and use it in GitHub Desktop.
Save jordic/c597dffdd18a4d289e6b to your computer and use it in GitHub Desktop.
Fucking javascript prototype inheritance
<script>
c = function() {}
c.prototype.d = {}
a = new c()
b = new c()
a.d.test = 'a'
console.log( a.d.test == b.d.test )
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment