Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nitayneeman/e88a7ee6a5c5a37daced35077d38c8c5 to your computer and use it in GitHub Desktop.
Save nitayneeman/e88a7ee6a5c5a37daced35077d38c8c5 to your computer and use it in GitHub Desktop.
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