JS

JavaScript Code Output Challenge - Convert tempera...

2.

What is the output of the following JavaScript code?

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

var result = convertFahrenheitToCelsius(100);
console.log(result);

1340

undefined

100

37.77777777777778