Skip to content

Instantly share code, notes, and snippets.

@wentout
Created March 12, 2024 11:34
Show Gist options
  • Save wentout/c65ed2b096e03828de282704f7a73778 to your computer and use it in GitHub Desktop.
Save wentout/c65ed2b096e03828de282704f7a73778 to your computer and use it in GitHub Desktop.
improved Eric Elliott's instanceof lies example
function foo() { };
const bar = { a: 'a' };
Object
.setPrototypeOf(
foo.prototype,
bar
);
const baz = Object.create(foo.prototype);
console.log(baz instanceof foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment