/* The forecast today is 293 Kelvin */ const kelvin = 300; /* We convert Kelvin to Celsius; */ /* Celsius is 273 degrees less than Kelvin */ const celsius = kelvin - 273; /* We convert Celsius to Fahrenheit using a equation */ let fahrenheit = celsius * (9/5) + 32 /* .floor() method from the built-in Math object to round down the Fahrenheit temperature */ fahrenheit = Math.floor(fahrenheit); let newtonscale = celsius * (33/100); newtonscale = Math.floor(newtonscale); console.log(`The temperature is ${fahrenheit} degrees Fahrenheit.`); console.log(`The temperature Newton is ${newtonscale} degrees.`);
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter