odin-javascript-exercises/08_calculator/calculator.js
2021-09-11 16:18:55 -06:00

33 lines
315 B
JavaScript

const add = function() {
};
const subtract = function() {
};
const sum = function() {
};
const multiply = function() {
};
const power = function() {
};
const factorial = function() {
};
// Do not edit below this line
module.exports = {
add,
subtract,
sum,
multiply,
power,
factorial
};