JavaScript Math对象之hypot()方法
Math.hypot()
方法返回其参数的平方和的平方根。
示例
// 3 和 4 的平方和的平方根
var num = Math.hypot(3, 4);
console.log(num); // 5
hypot() 语法
hypot()
方法的语法是:
Math.hypot(n1, n2, ..., nx)
这里,hypot()
是一个静态方法。因此,我们需要使用类名 Math
来访问此方法。
hypot() 参数
hypot()
方法接受任意数量(一个或多个)的数字作为参数。
- n1 - 一个数字
- n2 - 一个数字,依此类推。
hypot() 返回值
hypot()
方法返回:
- 给定参数的平方和的平方根。
- 如果任何参数是非数值,则返回
NaN
。 - 如果没有给出参数,则返回 0。