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

12 lines
182 B
JavaScript
Raw Permalink Normal View History

const convertToCelsius = function() {
};
2017-08-25 15:27:07 +00:00
const convertToFahrenheit = function() {
};
2017-08-25 15:27:07 +00:00
// Do not edit below this line
2017-08-25 15:27:07 +00:00
module.exports = {
convertToCelsius,
convertToFahrenheit
};