BigInt
BigInt is a numeric data type introduced in JavaScript to represent integers of arbitrary precision. It allows you to work with numbers beyond the limits of the regular Number type.
const largeNumber = BigInt(9007199254740991);
const largerNumber = largeNumber + BigInt(1);
console.log(largeNumber.toString()); // Output: 9007199254740991
console.log(largerNumber.toString()); // Output: 9007199254740992
In the example above, BigInt is used to create a large number. Operations can be performed on BigInt values using regular arithmetic operators. However, note that you need to use the toString() method to convert the BigInt value to a string for printing.
No comments:
Post a Comment