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