目录

JavaScript Math.cbrt()

Example

let x = Math.cbrt(125);
Try it Yourself »

Description

The Math.cbrt() method returns the cubic root of a number.



Syntax

Math.cbrt( x)

Parameters

Parameter Description
x Required.
A number.

Return Value

Type Description
Number The cube root of the number.


Browser Support

Math.cbrt() is an ECMAScript6 (ES6) feature.

ES6 (JavaScript 2015) is supported in all modern browsers:

Chrome Edge Firefox Safari Opera
Yes Yes Yes Yes Yes

Math.cbrt() is not supported in Internet Explorer 11 (or earlier).