JavaScript 中的 Math.cbrt()
Math.cbrt()函数用于查找数字的立方根。
一个数的立方根表示为 Math.cbrt(x)=y 使得 y^3=x。
句法:
Math.cbrt(number)
使用的参数:
number:这是您想知道其立方根的数字。
返回值:
它返回给定数字的立方根。
例子:
Input : Math.cbrt(8)
Output : 2
Input : Math.cbrt(-8)
Output : -2
Input : Math.cbrt(0)
Output : 0
Input : Math.cbrt(infinity)
Output : Infinity
- 当一个正数作为参数传递时。
输出:
Output : 2
- 当一个负数作为参数传递时。
输出:
Output : -2
- 当零作为参数传递时。
输出:
Output : 0
- 当无穷大作为参数传递时。
输出:
Output : Infinity