Update snippet descriptions & tags
This commit is contained in:
@ -5,7 +5,7 @@ tags: math,beginner
|
||||
|
||||
Converts Celsius to Fahrenheit.
|
||||
|
||||
- Follows the conversion formula `F = 1.8C + 32`.
|
||||
- Follows the conversion formula `F = 1.8 * C + 32`.
|
||||
|
||||
```js
|
||||
const celsiusToFahrenheit = degrees => 1.8 * degrees + 32;
|
||||
|
||||
Reference in New Issue
Block a user