返回两点之间的欧氏距离。
使用 Math.hypot()
计算两点之间的欧氏距离( Euclidean distance)。
const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
distance(1, 1, 2, 3); // 2.23606797749979
更多代码 JavaScript 实用代码片段 请查看 https://www.html.cn/30-seconds-of-code/
返回两点之间的欧氏距离。
使用 Math.hypot()
计算两点之间的欧氏距离( Euclidean distance)。
const distance = (x0, y0, x1, y1) => Math.hypot(x1 - x0, y1 - y0);
distance(1, 1, 2, 3); // 2.23606797749979
更多代码 JavaScript 实用代码片段 请查看 https://www.html.cn/30-seconds-of-code/
最新评论
写的挺好的
有没有兴趣翻译 impatient js? https://exploringjs.com/impatient-js/index.html
Flexbox playground is so great!
感谢总结。
awesome!
这个好像很早就看到类似的文章了
比其他的教程好太多了
柯理化讲的好模糊…没懂