Created
March 28, 2021 20:43
-
-
Save nitayneeman/caf327171e59112e9d3086b08f2f38fb to your computer and use it in GitHub Desktop.
This file contains 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
console.log(3n == 3); // true | |
console.log(3n == '3'); // true | |
console.log(BigInt(3) == Number(3)); // true | |
console.log(0n == false); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment