使用 JavaScript 查找二维平面中两点之间的距离
问题
我们需要编写一个JavaScript函数,它接收两个对象,它们都具有x和y属性,指定平面中的两个点。
我们的函数应该找到并返回这两个点之间的距离。
示例
以下是代码-
const a = {x: 5, y: -4}; const b = {x: 8, y: 12}; const distanceBetweenPoints = (a = {}, b = {}) => { let distance = 0; let x1 = a.x, x2 = b.x, y1 = a.y, y2 = b.y; distance = Math.sqrt((x2 - x1) * 2 + (y2 - y1) * 2); return distance; }; console.log(distanceBetweenPoints(a, b));输出结果
6.164414002968976