Radians
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Radians
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Given an angle in degrees, returns its value in radians.
Function signature
RADIANS(number: Number) => Number
Parameter | Description |
---|---|
Number | Degrees to convert |
Examples
Formula | Return value |
---|---|
RADIANS(57.29577951308232) | 1 |
RADIANS(-57.29577951308232) | -1 |
RADIANS(0) | 0 |
Was this article helpful?