18 lines
372 B
JavaScript
18 lines
372 B
JavaScript
const convertToCelsius = function(fahrenheitInput) {
|
|
let temp = ((fahrenheitInput - 32) * (5/9))
|
|
return Math.round(temp * 10) / 10
|
|
|
|
};
|
|
|
|
const convertToFahrenheit = function(celciusInput) {
|
|
let temp = ((celciusInput * (9/5)) + 32)
|
|
return Math.round(temp * 10) / 10
|
|
|
|
};
|
|
|
|
// Do not edit below this line
|
|
module.exports = {
|
|
convertToCelsius,
|
|
convertToFahrenheit
|
|
};
|