Skip to content

Instantly share code, notes, and snippets.

@aherve
Created December 13, 2016 11:11
Show Gist options
  • Select an option

  • Save aherve/84efe7bbb858a72c8f2d045309d1d5d0 to your computer and use it in GitHub Desktop.

Select an option

Save aherve/84efe7bbb858a72c8f2d045309d1d5d0 to your computer and use it in GitHub Desktop.
// These are ok
'abc' === 'abc' // true
1 === 1 // true
// These are not
[1,2,3] === [1,2,3] // false
{a: 1} === {a: 1} // false
{} === {} // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment