We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ES2020 defines the value of a parsed BigInt token in 11.8.3.2 as
Let n be the mathematical integer number of code points in DecimalDigits. Let mv be (the MV of NonZeroDigit × 10ℝn) plus the MV of DecimalDigits.
ES2021 erroneously dropped the n exponent in 12.8.3.2, and it is missing in the current draft:
n
Let n be the number of code points in DecimalDigits, excluding all occurrences of NumericLiteralSeparator. Let mv be (the MV of NonZeroDigit × 10) plus the MV of DecimalDigits.
The text was updated successfully, but these errors were encountered:
Change occurred in PR #2007 (at this line).
The point was presumably to remove just the <sub>ℝ</sub>, but the <sup>_n_</sup> also got deleted.
<sub>ℝ</sub>
<sup>_n_</sup>
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
ES2020 defines the value of a parsed BigInt token in 11.8.3.2 as
ES2021 erroneously dropped the
n
exponent in 12.8.3.2, and it is missing in the current draft:The text was updated successfully, but these errors were encountered: