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
We use the Number(...) constructor in a few places. Wrapping a string in the number constructor is going to cause rounding errors for values above Number.MAX_SAFE_INTEGER: Number("9007199254740991.45") will result in 9007199254740991.
The text was updated successfully, but these errors were encountered:
We use the
Number(...)
constructor in a few places. Wrapping a string in the number constructor is going to cause rounding errors for values aboveNumber.MAX_SAFE_INTEGER
:Number("9007199254740991.45")
will result in9007199254740991
.The text was updated successfully, but these errors were encountered: