https://github.com/onlymisaky/calculator
https://github.com/onlymisaky/calculator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/onlymisaky/calculator
- Owner: onlymisaky
- Created: 2022-02-20T09:29:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-20T10:12:49.000Z (over 4 years ago)
- Last Synced: 2024-12-31T19:43:07.249Z (over 1 year ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```