odin-default-js-exercises/08_calculator/calculator.js

34 lines
315 B
JavaScript
Raw Permalink Normal View History

const add = function() {
2017-09-20 23:04:46 +00:00
};
2017-09-20 23:04:46 +00:00
const subtract = function() {
2017-09-20 23:04:46 +00:00
};
2017-09-20 23:04:46 +00:00
const sum = function() {
2017-09-20 23:04:46 +00:00
};
2017-09-20 23:04:46 +00:00
const multiply = function() {
};
2017-09-20 23:04:46 +00:00
const power = function() {
2017-09-20 23:04:46 +00:00
};
2017-09-20 23:04:46 +00:00
const factorial = function() {
2017-09-20 23:04:46 +00:00
};
2017-09-20 23:04:46 +00:00
// Do not edit below this line
2017-09-20 23:04:46 +00:00
module.exports = {
add,
subtract,
sum,
multiply,
power,
factorial
};