Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 28, 2015 21:01
Show Gist options
  • Save qetr1ck-op/c43b5a7d1ec3afd701af to your computer and use it in GitHub Desktop.
Save qetr1ck-op/c43b5a7d1ec3afd701af to your computer and use it in GitHub Desktop.
function Animal() { }
Animal.prototype = {}; // override
var animal = new Animal();
console.log( animal.constructor == Animal ); // false
console.log( animal.constructor == Object ); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment