Files
30-seconds-of-code/snippets/fahrenheitToCelsius.md
2020-04-16 11:00:06 +03:00

255 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