Files
30-seconds-of-code/snippets/radsToDegrees.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

16 lines
296 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
```