//value of kelvin for today’s forcast
const kelvin = 293;
//value of celsius for today’s forcast
const celsius = kelvin - 273;
//value of fahrenheit for today’s forcast
let Fahrenheit = celsius * (9/5) + 32;
//converted it to round down
Fahrenheit=Math.floor(Fahrenheit);
console.log(The temperature is ${Fahrenheit} degrees Fahrenheit
);
//converting to Newton Scale
let Newton = celsius *(33/100);
Newton=Math.floor(Newton);
//logging Newton scale
console.log(The temperature is ${Newton} degrees Newton
);