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
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️