# Math.tan ## Function tangent. Returns the tangent of value. ## Syntax ```bt Math.tan(value) ``` ## Parameters | Parameters | Type | Required | Default value | Description | | ------ | ------ | ------ | ------ | ------ | | value | Number | Yes | None | The value in radians. | ## Return value | Type | Description | | ------ | ------ | | Int/Float | Returns the tangent of value. An Int is returned for integer results, and a Float for non-integer or non-finite results. | ## Example ```bt result = Math.tan(0) // Output: 0 print result ``` ## Notes - Trigonometric function parameters use radians.