odin-javascript-exercises/08 calculator/calculator.js
Benjo Kho 55cfb173d8 Order exercise folders
Ordered the exercise folders by placing their numbers in their folder name
2021-08-07 14:21:26 +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
};