Untitled

ASSIGNMENT 3
 avatar
unknown
plain_text
4 years ago
255 B
5
Indexable
// You can convert fahrenheit value to celsius using the formula:
// celsius = (fahrenheit - 32) / 1.8

let fahrenheit = 203;
let celsius = (fahrenheit - 32) / 1.8
console.log(`${fahrenheit} degree fahrenheit is equal to ${celsius} degree celsius.`);
Editor is loading...