Question: Write a JavaScript program to perform the following tasks: Write an expression to convert a Fahrenheit to Celsius using the following pseudocode. We can hard
Write a JavaScript program to perform the following tasks:
Write an expression to convert a Fahrenheit to Celsius using the following pseudocode. We can hard code the value for celsius in this assignment. Later, we will learn how to accept input from a console
declare variable celsius and assign a value of 10 to the celsius variable
fahrenheit = (9 / 5) * celsius + 32
print the result to the console using console.log()
console.log(fahrenheit);
Should be as simple as possible please!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
