Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-19 18:51:03 +03:00
parent f0fbe0c3e5
commit 5e8e6f51a3
36 changed files with 97 additions and 82 deletions

View File

@ -3,7 +3,7 @@ title: distance
tags: math,beginner
---
Returns the distance between two points.
Calculates the distance between two points.
- Use `Math.hypot()` to calculate the Euclidean distance between two points.
@ -12,5 +12,5 @@ const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
```
```js
distance(1, 1, 2, 3); // 2.23606797749979
```
distance(1, 1, 2, 3); // ~2.2361
```