Add approximatelyEqual

This commit is contained in:
Angelos Chalaris
2018-02-14 12:47:13 +02:00
parent a8caa9c75d
commit ba59e8020a
5 changed files with 46 additions and 4 deletions

View File

@ -0,0 +1,14 @@
### approximatelyEqual
Checks if two numbers are approximately equal to each other.
Use `Math.abs()` to compare the absolute difference of the two values to `epsilon`.
Omit the third parameter, `epsilon`, to use a default value of `0.001`.
```js
const approximatelyEqual = (v1, v2, epsilon = 0.001) => Math.abs(v1 - v2) < epsilon;
```
```js
approximatelyEqual(Math.PI / 2.0 , 1.5708); // true
```