Are there any good JavaScript currency or decimal classes?

前端 未结 7 2415
孤城傲影
孤城傲影 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:36

    There is Math

    The Math object is build into the JavaScript spec so every browser has it natively.

    As for data types, JavaScript has Number. That's it. We have no other number data type. The best think to do is to try and work with Integers.

提交回复
热议问题