Files
30-seconds-of-code/snippets/distance.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

402 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Distance between two points math,algorithm measuring 2017-12-17T16:41:31+02:00 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