JS

JavaScript Code Output Challenge - Convert fahrenh...

9.

Given the following JavaScript function to convert Fahrenheit to Celsius:

function convertFahrenheitToCelsius(fahrenheit) {
  return (fahrenheit - 32) * 5 / 9;
}

What is the output of convertFahrenheitToCelsius(32)?

100

68

0

16