ES6 Math.sqrt ( x )
此方法返回数字的平方根。如果数字的值为负,则sqrt返回NaN。
语法
Math.sqrt ( x );
参数
- x - 代表一个数字
返回值
返回数字的平方根。
例
console.log("---Math.sqrt()---")
console.log("Math.sqrt(16) : "+Math.sqrt(16)
console.log("Math.sqrt(15.5) : "+Math.sqrt(15.5))
输出
---Math.sqrt()---
Math.sqrt(16) : 4
Math.sqrt(15.5) : 3.9370039370059056
此方法返回数字的多维数据集根。语法Math.cbrt ( x );参数x - 代表一个数字返回价值返回数字的立方根。例console.log("---Math.cbrt()---")console.l ...