mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
32 lines
284 B
JavaScript
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
|
|
}; |