Files
30-seconds-of-code/snippets/distance.md
Angelos Chalaris bb722b2eb4 Updated examples
2017-12-27 16:35:25 +02:00

14 lines
259 B
Markdown

### distance
Returns the distance between two points.
Use `Math.hypot()` to calculate the Euclidean distance between two points.
```js
const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
```
```js
distance(1,1, 2,3) // 2.23606797749979
```