Files
30-seconds-of-code/snippets/fahrenheitToCelsius.md
2020-09-15 21:52:00 +03:00

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