2024-01-05 21:03:43 +00:00
|
|
|
|
const convertToCelsius = function(deg) {
|
|
|
|
|
return (deg - 32) * (5/9);
|
2024-01-05 19:11:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const convertToFahrenheit = function() {
|
2024-01-05 21:03:43 +00:00
|
|
|
|
// x °C ≘ (x ×9/5+ 32) °F
|
2024-01-05 19:11:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Do not edit below this line
|
|
|
|
|
module.exports = {
|
|
|
|
|
convertToCelsius,
|
|
|
|
|
convertToFahrenheit
|
|
|
|
|
};
|