Skip to content

Commit

Permalink
docs: clarify BigInts are integers (#37741)
Browse files Browse the repository at this point in the history
* docs: clarify BigInt are integers

* chore: point to high & low

large is not accurate enough
  • Loading branch information
mxdvl authored Jan 21, 2025
1 parent 716e136 commit 00e97c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ browser-compat: javascript.builtins.BigInt

{{JSRef}}

**`BigInt`** values represent numeric values which are [too large](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER) to be represented by the `number` {{Glossary("Primitive", "primitive")}}.
**`BigInt`** values represent integer values which are [too high](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER) or [too low](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER) to be represented by the `number` {{Glossary("Primitive", "primitive")}}.

## Description

Expand Down

0 comments on commit 00e97c5

Please sign in to comment.