Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 27, 2020 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reime005/1168d15b46c896f759d8da3f54bfdded to your computer and use it in GitHub Desktop.
Save reime005/1168d15b46c896f759d8da3f54bfdded to your computer and use it in GitHub Desktop.
const oneFunction = someInput => { return someInput; }
const theSameFunction = theSameInput => { return theSameInput; }
console.log(oneFunction === theSameFunction); // false
console.log([42, 43] === [42, 43]); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment