🔢BigInt
🚧 under construction -> example
JS ⟩ value ⟩ primitive ⟩ bigint
a primitive wrapper object used to represent and manipulate primitive bigintvalues — which are too large to be represented by the number primitive.
arithmetic operator(s) do not allow to mix BigInt and Number❗
bitwise operator(s) can be used with BigInt.
comparison operator(s) do allow to mix BigInt and Number❗
⛔ possible errors:
TypeError: Cannot convert a BigInt value to a number (👉 type conversion)
Last updated
Was this helpful?