Files
30-seconds-of-code/snippets/js/s/distance-between-two-points.md
Angelos Chalaris 9d032ce05e Rename js snippets
2023-05-19 20:23:47 +03:00

403 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Distance between two points snippet javascript
math
algorithm
measuring 2020-12-28T13:49:24+02:00

Calculates the 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.2361