Skip to content

eslint/no-loss-of-precision Correctness

This rule is turned on by default.

What it does

Disallow precision loss of number literal

Why is this bad?

It can lead to unexpected results in certain situations For example, when performing mathematical operations

In JS, Numbers are stored as double-precision floating-point numbers according to the IEEE 754 standard. Because of this, numbers can only retain accuracy up to a certain amount of digits. If the programmer enters additional digits, those digits will be lost in the conversion to the Number type and will result in unexpected behavior.

Examples

Examples of incorrect code for this rule:

javascript
var x = 2e999;
javascript
var x = 9007199254740993;
javascript
var x = 5123000000000000000000000000001;
javascript
var x = 1230000000000000000000000.0;
javascript
var x = 0x200000_0000000_1;

Examples of correct code for this rule:

javascript
var x = 12345";
javascript
var x = 123.456;
javascript
var x = 123.0000000000000000000000";
javascript
var x = 123e34;
javascript
var x = 0x1fff_ffff_fff_fff;

How to use

To enable this rule in the CLI or using the config file, you can use:

bash
oxlint --deny no-loss-of-precision
json
{
  "rules": {
    "no-loss-of-precision": "error"
  }
}

References

Released under the MIT License.