add BigInt content (JS) (#6397)

* add BigInt content (JS)

* Update src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/6378/merge
iliAsghar 2 months ago committed by GitHub
parent 5f011d3b3e
commit de7e144d12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md

@ -1 +1,10 @@
# bigint
BigInt is a built-in JavaScript object that allows you to work with integers of arbitrary size.
Unlike the Number type, which can accurately represent integers only within the range of ±2^53 , BigInt can handle integers far beyond this limit. This makes it particularly useful for applications requiring high precision with very large numbers, such as cryptography or scientific computations.
Visit the following resources to learn more:
- [@article@BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt)
- [@video@The Whys and Hows Of BigInt](https://youtu.be/6I650PQfhMg?si=XyVGrmp4KWLRcHVj)

Loading…
Cancel
Save