Files
30-seconds-of-code/snippets/celsiusToFahrenheit.md
2022-12-04 22:20:49 +02:00

21 lines
373 B
Markdown

---
title: Celsius to Fahrenheit
tags: math
unlisted: true
cover: blog_images/last-light.jpg
firstSeen: 2020-04-16T11:00:06+03:00
lastUpdated: 2021-01-04T13:04:15+02:00
---
Converts Celsius to Fahrenheit.
- Follow the conversion formula `F = 1.8 * C + 32`.
```js
const celsiusToFahrenheit = degrees => 1.8 * degrees + 32;
```
```js
celsiusToFahrenheit(33); // 91.4
```