Math.cbrt()

基线 广泛可用

此功能已建立良好,并且可在许多设备和浏览器版本上运行。它从 2015 年 7 月.

报告反馈

Math.cbrt() 静态方法返回一个数字的立方根。也就是说 ( 𝙼𝚊𝚝𝚑.𝚌𝚋𝚛𝚝 ) = 𝚡 3 = x y 唯一 y 3 = 𝚡 使得

试试看

语法

\mathtt{\operatorname{Math.cbrt}(x)} = \sqrt[3]{x} = \text{the unique } y \text{ such that } y^3 = x
Math.cbrt(x)

js

𝚡

参数

一个数字。

返回值

描述

x 的立方根。

示例

由于 cbrt()Math 的静态方法,因此您始终将其用作 Math.cbrt(),而不是用作您创建的 Math 对象的方法(Math 不是构造函数)。

\mathtt{\operatorname{Math.cbrt}(x)} = \sqrt[3]{x} = \text{the unique } y \text{ such that } y^3 = x
Math.cbrt(-Infinity); // -Infinity
Math.cbrt(-1); // -1
Math.cbrt(-0); // -0
Math.cbrt(0); // 0
Math.cbrt(1); // 1
Math.cbrt(2); // 1.2599210498948732
Math.cbrt(Infinity); // Infinity

规范

使用 Math.cbrt()
规范
# ECMAScript 语言规范

浏览器兼容性

sec-math.cbrt

另请参阅