Jighead
8/1/2017 - 2:49 PM

Convert celcius to fahrenheit

Convert celcius to fahrenheit

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

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