Created
July 26, 2019 12:49
-
-
Save 2012mjm/66b4098ef63452d3f416b25887b0d335 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let a = 3; | |
| let b = new Number(3); | |
| let c = 3; | |
| console.log(a == b); | |
| console.log(a === b); | |
| console.log(b === c); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment