odin-javascript-exercises/calculator/calculator.js
xandora 582521cc9f
Update calculator/calculator.js
Fix duplicate semicolon
2021-05-18 11:43:23 +12: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
};