Skip to content

Instantly share code, notes, and snippets.

@chrislaughlin
Created January 2, 2017 22:28
Show Gist options
  • Save chrislaughlin/cc69a70bd12ac872a6e27f9df53e44ed to your computer and use it in GitHub Desktop.
Save chrislaughlin/cc69a70bd12ac872a6e27f9df53e44ed to your computer and use it in GitHub Desktop.
Object Equality
const chris1 = {
name: 'Chris',
location: 'Belfast'
}
const chris2 = {
name: 'Chris',
location: 'Belfast'
}
console.log(chris1 === chris2); //false
console.log(chris1 == chris2); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment