Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:47
Show Gist options
  • Save DennyScott/d1c0a05e9a5bf4bc959c25afec106e68 to your computer and use it in GitHub Desktop.
Save DennyScott/d1c0a05e9a5bf4bc959c25afec106e68 to your computer and use it in GitHub Desktop.
function RefEq() {
const A = () => { return 1 };
const B = A;
const C = () => { return 1 };
}
// A === B
// C !== A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment