Skip to content

Instantly share code, notes, and snippets.

@fredbegin11
Created October 17, 2018 03:05
Show Gist options
  • Select an option

  • Save fredbegin11/aa6378930a5f5ebef113617ef3d4eda7 to your computer and use it in GitHub Desktop.

Select an option

Save fredbegin11/aa6378930a5f5ebef113617ef3d4eda7 to your computer and use it in GitHub Desktop.
const logFunction = () => console.log("Example");
(() => console.log("Example")) === (() => console.log("Example")); // false
logFunction === (() => console.log("Example")); // false
logFunction === logFunction // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment