Files
30-seconds-of-code/snippets/distance-between-two-points.md
Angelos Chalaris 43f8529cb9 Added samples
2017-12-12 17:50:08 +02:00

228 B

Distance between two points

Use Math.hypot() to calculate the Euclidean distance between two points.

const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
// distance(1,1, 2,3) -> 2.23606797749979