You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, only Number.prototype.toString() is used in the optimizer, but it has a disadvantage: it would be limited by MAX_SAFE_INTEGER. BigInt.prototype.toString() is not affected by that. To get number in BigInt type, you can just call "return "+number written in string+"n" in Function().
The text was updated successfully, but these errors were encountered:
Currently, only
Number.prototype.toString()
is used in the optimizer, but it has a disadvantage: it would be limited byMAX_SAFE_INTEGER
.BigInt.prototype.toString()
is not affected by that. To get number inBigInt
type, you can just call "return "+number written in string
+"n" inFunction()
.The text was updated successfully, but these errors were encountered: