# Math.cbrt ## Function Cube root. Returns the cube root of value. ## Syntax ```bt Math.cbrt(value) ``` ## Parameters | Parameters | Type | Required | Default value | Description | | ------ | ------ | ------ | ------ | ------ | | value | Number | Yes | None | The number involved in the calculation. | ## Return value | Type | Description | | ------ | ------ | | Int/Float | Returns the cube root of value. An Int is returned for integer results, and a Float for non-integer or non-finite results. | ## Example ```bt result = Math.cbrt(27) // Output: 3 print result ``` ## Notes - Integer results return Int.