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

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
}