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