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

259 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