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