scrimba
freeCodeCamp algorithm challenges
Convert Celsius to Farhenheit
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Convert Celsius to Farhenheit
AboutCommentsNotes
Convert Celsius to Farhenheit
Expand for more info
index.js
run
preview
console
function convertToF(celsius) {
let fahrenheit;
return fahrenheit;
}

console.log(convertToF(30));

/*

convertToF(0) should return a number
convertToF(-30) should return a value of -22
convertToF(-10) should return a value of 14
convertToF(0) should return a value of 32
convertToF(20) should return a value of 68
convertToF(30) should return a value of 86

*/
Console
null
,
index.html
-1:55