odin-default-js-exercises/07_tempConversion/tempConversion.js

16 lines
293 B
JavaScript

const ftoc = function (temprF) {
let temprC = ((temprF - 32) * 5) / 9;
return Math.round(temprC * 10) / 10;
};
const ctof = function (temprC) {
let temprF = (temprC * 9) / 5 + 32;
return Math.round(temprF * 10) / 10;
};
// Do not edit below this line
module.exports = {
ftoc,
ctof,
};