fix naming
This commit is contained in:
8
snippets/distance.md
Normal file
8
snippets/distance.md
Normal file
@ -0,0 +1,8 @@
|
||||
### 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);
|
||||
// distance(1,1, 2,3) -> 2.23606797749979
|
||||
```
|
||||
Reference in New Issue
Block a user