Created
March 28, 2021 20:44
-
-
Save nitayneeman/e88a7ee6a5c5a37daced35077d38c8c5 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); // false | |
console.log(3n === '3'); // false | |
console.log(BigInt(3) === Number(3)); // false | |
console.log(0n === false); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment