GithubHelp home page GithubHelp logo

Comments (2)

alexbardas avatar alexbardas commented on July 28, 2024

It is based on integers, so it doesn't work with real numbers. You can still achieve what you want by splitting by ., checking how many decimals you have and multiply with 10^nr_of_decimals.

For example, let's assume that you have the following numbers:

["131.325", "1.32512521", "12453.31212"]

Let's assume that the maximum number of accepted decimals is 10, so you have the transformed list:
["1313250000000", "13251252100", "124533121200000"],
obtained by multiplying every number from the initial list with 10^10.

You can now add those and you get 125859622452100.

Then divide by 10^10 (or add a dot to the string representation 10 characters to the right) and you get the same result as adding the initial numbers: 12585.9622452100.

The only tricky part here is to make that assumption about the maximum number of accepted decimals. If this number is big enough and your initial number is real and has a finite number of decimals, then it should be possible to represent it.

Hope that this helps.

from bignumber.js.

alexbardas avatar alexbardas commented on July 28, 2024

Closing this as there has been no activity and the use case is still not supported in the current version of the library

from bignumber.js.

Related Issues (13)

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.