Files
30-seconds-of-code/snippets/fahrenheitToCelsius.md
30secondsofcode adbf8cfe1f Travis build: 1880
2020-04-16 12:14:30 +00:00

17 lines
259 B
Markdown

---
title: fahrenheitToCelsius
tags: math,beginner
---
Converts Fahrenheit to Celsius.
Follows the conversion formula `C = (F - 32) * 5/9`.
```js
const fahrenheitToCelsius = degrees => ((degrees - 32) * 5) / 9;
```
```js
fahrenheitToCelsius(32); // 0
```