An open API service indexing awesome lists of open source software.

https://github.com/onlymisaky/calculator


https://github.com/onlymisaky/calculator

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Calculator

> 用于解决 js 在 进行四则运算时精度丢失的问题

```js
console.log(0.3+0.3+0.3) // 0.8999999999999999
Calculator.addition(.3,.3,.3) // 0.9
```