Skip to content

Instantly share code, notes, and snippets.

@fredbegin11
Created October 16, 2018 01:55
Show Gist options
  • Select an option

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

Select an option

Save fredbegin11/962d53bee0e95cafedf6e7ac562ab48f to your computer and use it in GitHub Desktop.
Inline function comparison
const logFunction = () => console.log("Un exemple");
(() => console.log("Un exemple")) === (() => console.log("Un exemple")); // faux
logFunction === (() => console.log("Un exemple")); // faux
logFunction === logFunction // vrai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment