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

13 lines
218 B
JavaScript

const ftoc = function (temp) {
return Math.round((((temp - 32) * 5) / 9) * 10) / 10;
};
const ctof = function (temp) {
return Math.round(((temp * 9) / 5 + 32) * 10) / 10;
};
module.exports = {
ftoc,
ctof,
};