Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 442 Bytes

convert-to-fahrenheit-function.md

File metadata and controls

19 lines (13 loc) · 442 Bytes

Convert To Fahrenheit

Write a function convertToFahrenheit which takes a single parameter which is the temperature in degrees Celsius. The function should return the corresponding temperature in degrees Fahrenheit.

// Write your function here ...
...
...


let freezing = convertToFahrenheit(0);
console.log(freezing); // should print 32

let ovenTemp = convertToFahrenheit(200);
console.log(ovenTemp); // should print 392