Rename js snippets
This commit is contained in:
20
snippets/js/s/distance-between-two-points.md
Normal file
20
snippets/js/s/distance-between-two-points.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
title: Distance between two points
|
||||
type: snippet
|
||||
language: javascript
|
||||
tags: [math,algorithm]
|
||||
cover: measuring
|
||||
dateModified: 2020-12-28T13:49:24+02:00
|
||||
---
|
||||
|
||||
Calculates 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.2361
|
||||
```
|
||||
Reference in New Issue
Block a user