odin-javascript-exercises/calculator/calculator.js

32 lines
284 B
JavaScript
Raw Normal View History

const add = function() {
2021-05-09 03:08:25 -07:00
};
2017-09-20 16:04:46 -07:00
const subtract = function() {
2021-05-09 03:08:25 -07:00
};
2017-09-20 16:04:46 -07:00
const sum = function() {
2021-05-09 03:08:25 -07:00
};
2017-09-20 16:04:46 -07:00
const multiply = function() {
};;
2017-09-20 16:04:46 -07:00
const power = function() {
2021-05-09 03:08:25 -07:00
};
2017-09-20 16:04:46 -07:00
const factorial = function() {
2021-05-09 03:08:25 -07:00
};
2017-09-20 16:04:46 -07:00
module.exports = {
2021-05-09 03:08:25 -07:00
add,
subtract,
sum,
multiply,
power,
factorial
};