Convert Celsius to Fahrenheit - Celsius Not Defined

Hey everyone,
It would be great if someone has an idea why I keep getting this error message:

“ReferenceError: celcius is not defined”

and why this code is not passing.

Thanks!

Danielle

Your code so far

function convertToF(celsius) {
  var fahrenheit;
  // Only change code below this line
  fahrenheit = (celcius * (9/5)) + 32;
  
  // Only change code above this line
  return fahrenheit;
}

// Change the inputs below to test your code
convertToF(30);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/convert-celsius-to-fahrenheit

celcius should be celsius.

1 Like

OF COURSE it would be that simple. A typo. Lol thanks so much!