Are there any good JavaScript currency or decimal classes?

前端 未结 7 2416
孤城傲影
孤城傲影 2021-02-19 06:57

I am trying to deal with JavaScript values such as 23.45, but I want to be able to do mathematical operations on these values (addition, subtraction, multiplication

7条回答
  •  梦如初夏
    2021-02-19 07:23

    New kid on the block: moneysafe. It's open-source, and uses a functional approach that allows smart composition.

    $(.1) + $(.2) === $(.3).cents;
    

    https://github.com/ericelliott/moneysafe

提交回复
热议问题