Skip to content

Instantly share code, notes, and snippets.

@alenvlahovljak
Created August 28, 2020 13:41
Show Gist options
  • Save alenvlahovljak/590b4f2c3c666534d0b18c2669ca52ed to your computer and use it in GitHub Desktop.
Save alenvlahovljak/590b4f2c3c666534d0b18c2669ca52ed to your computer and use it in GitHub Desktop.
How does Abstract Equality Comparison work?
var str1 = "Hello";
var str2 = new String("Hello");
str1 == str2 // true
str1 === str2 // false - coercion was not allowed this time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment