Files
odin-javascript-exercises/07_tempConversion/tempConversion.js
T

12 lines
182 B
JavaScript
Raw Normal View History

2022-11-12 20:49:28 +01:00
const convertToCelsius = function() {
2021-03-03 15:13:24 +13:00
};
2017-08-25 10:27:07 -05:00
2022-11-12 20:49:28 +01:00
const convertToFahrenheit = function() {
2021-03-03 15:13:24 +13:00
};
2017-08-25 10:27:07 -05:00
// Do not edit below this line
2017-08-25 10:27:07 -05:00
module.exports = {
2022-11-12 20:49:28 +01:00
convertToCelsius,
convertToFahrenheit
2021-03-03 15:13:24 +13:00
};