E0044: unexpected characters in number literal
Letters are allowed in number literals in certain situations, such as in
123n
, 1e6
, and 0xff
. It is an error to include other letters or letters in
the wrong spot:
To fix this error, use the correct letter or remove the extraneous letter:
Alternatively, use the *
operator to multiply a variable by a number:
Introduced in quick-lint-js version 0.2.0.