ES6 Math.cbrt ( x )

此方法返回数字的多维数据集根。

语法

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

相当于Math.pow(Math.E,x)。语法Math.exp ( x ) ;参数x - 代表一个数字返回值返回变量x的指数值。例console.log("---Math.exp()---")cons ...