ES6 - Math cbrt() 函数



此方法返回一个数字的立方根。

语法

Math.cbrt ( x );   

参数

  • x − 代表一个数字

返回值

返回数字的立方根。

示例

console.log("---Math.cbrt()---") 
console.log("Math.cbrt(27) : "+Math.cbrt(27)) 
console.log("Math.cbrt(22) : "+Math.cbrt(22))         

输出

---Math.cbrt()--- 
Math.cbrt(27) : 3 
Math.cbrt(22) : 2.802039330655387             
广告