From de7e144d12d7413e988b9621c3b1945c250faeb9 Mon Sep 17 00:00:00 2001 From: iliAsghar <139040345+iliAsghar@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:24:40 +0330 Subject: [PATCH] add BigInt content (JS) (#6397) * add BigInt content (JS) * Update src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md --------- Co-authored-by: Kamran Ahmed --- .../content/bigint@6lUF0neW1piiP1RsaVxEX.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md b/src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md index 47285435c..a3164ad8b 100644 --- a/src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md +++ b/src/data/roadmaps/javascript/content/bigint@6lUF0neW1piiP1RsaVxEX.md @@ -1 +1,10 @@ -# bigint \ No newline at end of file +# 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)