Files
odin-javascript-exercises/08_calculator/calculator.js
T

34 lines
315 B
JavaScript
Raw Normal View History

2021-03-03 15:13:24 +13:00
const add = function() {
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
};
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
const subtract = function() {
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
};
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
const sum = function() {
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
};
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
const multiply = function() {
2021-05-18 11:43:23 +12:00
};
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
const power = function() {
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
};
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
const factorial = function() {
2017-09-20 19:04:46 -04:00
2021-03-03 15:13:24 +13:00
};
2017-09-20 19:04:46 -04:00
// Do not edit below this line
2017-09-20 19:04:46 -04:00
module.exports = {
2021-03-03 15:13:24 +13:00
add,
subtract,
sum,
multiply,
power,
factorial
};