Apply new format to snippets and template
This commit is contained in:
@ -5,7 +5,7 @@ tags: math,beginner
|
||||
|
||||
Returns the distance between two points.
|
||||
|
||||
Use `Math.hypot()` to calculate the Euclidean 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);
|
||||
|
||||
Reference in New Issue
Block a user