matician - v2.0.0
    Preparing search index...

    Function cbrt

    • Returns the cube root of a number.

      Parameters

      • value: number

        The number to find the cube root of.

      Returns number

      The cube root of the given number.

      cbrt(8);     // returns 2
      cbrt(-27); // returns -3
      cbrt(0); // returns 0