Consistent wording

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-01 20:50:57 +02:00
parent ef40a60a50
commit 0ba944aa66
18 changed files with 21 additions and 18 deletions

View File

@ -6,7 +6,7 @@ tags: math,beginner
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`.
- Omit the third argument, `epsilon`, to use a default value of `0.001`.
```js
const approximatelyEqual = (v1, v2, epsilon = 0.001) =>