Skip to content

Instantly share code, notes, and snippets.

@aureliosaraiva
Created November 21, 2016 18:58
Show Gist options
  • Save aureliosaraiva/6df067237fb476ca658f53fa50a3d1a6 to your computer and use it in GitHub Desktop.
Save aureliosaraiva/6df067237fb476ca658f53fa50a3d1a6 to your computer and use it in GitHub Desktop.
const myFunction = function () { /* My code */ };
const a = test.bind(this);
const b = test.bind(this);
console.log(a === b); // result is false
console.log(a === a); // result is true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment