Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 765 Bytes

distance.md

File metadata and controls

24 lines (19 loc) · 765 Bytes
title tags author_title author_url author_image_url description image
distance
math,beginner
Deepak Vishwakarma
Implementation of "distance" in typescript, javascript and deno.

JS TODO

Returns 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.23606797749979