odin-javascript-exercises/08_calculator/calculator.js
2021-08-07 14:52:11 +08:00

32 lines
284 B
JavaScript

const add = function() {
};
const subtract = function() {
};
const sum = function() {
};
const multiply = function() {
};
const power = function() {
};
const factorial = function() {
};
module.exports = {
add,
subtract,
sum,
multiply,
power,
factorial
};