Travis build: 1671

This commit is contained in:
30secondsofcode
2018-02-14 10:48:38 +00:00
parent f26d3109a5
commit 9ce2497765
3 changed files with 29 additions and 3 deletions

View File

@ -10,5 +10,5 @@ const approximatelyEqual = (v1, v2, epsilon = 0.001) => Math.abs(v1 - v2) < epsi
```
```js
approximatelyEqual(Math.PI / 2.0 , 1.5708); // true
approximatelyEqual(Math.PI / 2.0, 1.5708); // true
```