Skip to content

Instantly share code, notes, and snippets.

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