BigInt API
Working with arbitrary-precision integers.
BigInt is a primitive wrapper object used to represent and manipulate primitive bigint values - which are too large to be represented by the number primitive.
A BigInt is created by appending n to the end of an integer literal, or by calling the BigInt() function. It can represent integers of arbitrary magnitude, and is helpful for working with very large numbers where precision is important, such as when working with large timestamps, large IDs, or in cryptographic applications.