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

32 lines
268 B
JavaScript

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