JavaScript program to convert Celsius to Fahrenheit:

python tutorials and learn python

Created with Sketch.

JavaScript program to convert Celsius to Fahrenheit:

let celsius = 100;
let fahrenheit = celsius * 9/5 + 32;
console.log(celsius + "°C is equal to " + fahrenheit + "°F");

Leave a Reply

Your email address will not be published. Required fields are marked *