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

16 lines
294 B
Markdown

---
title: degreesToRads
tags: math,beginner
---
Converts an angle from degrees to radians.
Use `Math.PI` and the degree to radian formula to convert the angle from degrees to radians.
```js
const degreesToRads = deg => (deg * Math.PI) / 180.0;
```
```js
degreesToRads(90.0); // ~1.5708
```