/number-operator

๐ŸงฎPerform correct +-* / operation operations on the front end

Primary LanguageJavaScript

number-operator

Because JS uses the IEEE 754 double version (64-bit), and it has this problem as long as it uses the IEEE 754 language. So when we calculate the number operation, there will be a precision error

Installation

npm install -D number-operator

Usage

Normal environment computing

> console.log(0.1+0.2); 
0.30000000000000004 โŒ

> console.log(0.3-0.1);
0.19999999999999998 โŒ

> console.log(0.1*0.2);
0.020000000000000004 โŒ

> console.log(0.3/0.2);
1.4999999999999998 โŒ

use number-operator

require('number-operator');
or
//import 'number-operator'

> console.log((0.1)._plus_(0.2));
0.3 ๐Ÿ™†

> console.log((0.3)._minus_(0.1));
0.2 ๐Ÿ™†

> console.log((0.1)._times_(0.2));
0.02 ๐Ÿ™†

> console.log((0.3)._div_(0.2));
1.5 ๐Ÿ™†

chained call

> console.log((0.3)._minus_(0.1)._plus_(0.1));
0.3 ๐Ÿ™†

String type can also be used

> console.log(('0.3')._minus_(0.1)._plus_('0.1'));
0.3 ๐Ÿ™†