Returns the cube root of a number.
The number to find the cube root of.
The cube root of the given number.
cbrt(8); // returns 2cbrt(-27); // returns -3cbrt(0); // returns 0 Copy
cbrt(8); // returns 2cbrt(-27); // returns -3cbrt(0); // returns 0
Returns the cube root of a number.