Skip to content

Instantly share code, notes, and snippets.

@zandroid
Created May 31, 2013 19:42
Show Gist options
  • Save zandroid/5687477 to your computer and use it in GitHub Desktop.
Save zandroid/5687477 to your computer and use it in GitHub Desktop.
var rc = new Rect();
var sq = new Square();
console.log(rc instanceof Rect); //=> true
console.log(sq instanceof Square); //=> true
console.log(sq instanceof Rect); //=> true !!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment