30秒学会 JavaScript 片段 · 2018年3月22日

30秒学会 JavaScript 片段 – distance

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