Files
odin-javascript-exercises/calculator/calculator.js
T
2021-04-30 21:54:46 +12:00

32 lines
268 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
}