Files
30-seconds-of-code/snippets/radsToDegrees.md
2020-09-15 21:52:00 +03:00

17 lines
299 B
Markdown

---
title: radsToDegrees
tags: math,beginner
---
Converts an angle from radians to degrees.
- Use `Math.PI` and the radian to degree formula to convert the angle from radians to degrees.
```js
const radsToDegrees = rad => (rad * 180.0) / Math.PI;
```
```js
radsToDegrees(Math.PI / 2); // 90
```