Coder Social home page Coder Social logo

number-operator's Introduction

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 ๐Ÿ™†

number-operator's People

Contributors

dleged avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.