Using all the previous concepts to convert the temprature in kelvin to celsius > fahrenheit > newton.
Example:
// storing the kelvin valuelet kelvin =293;// Converting Celsius to Kelvin formatlet celsius = kelvin -273;// Converting Celsius format to Fahrenheitlet fahrenheit = celsius * (9/5) +32;// Rounding off fahrenheit valuefahrenheit =Math.floor(fahrenheit);// Printing down the final temprature in fahrenheitconsole.log(`The temprature is ${fahrenheit} degree fahrenheit.`);// Converting celsius to newton formatlet newton = celsius * (33/100);// Rounding off the newton valuenewton =Math.floor(newton);// Printing down the final temprature in newtonconsole.log(`The temprature in newton is ${newton} newton.`);