32 lines
No EOL
268 B
JavaScript
32 lines
No EOL
268 B
JavaScript
const add = function() {
|
|
|
|
}
|
|
|
|
const subtract = function() {
|
|
|
|
}
|
|
|
|
const sum = function() {
|
|
|
|
}
|
|
|
|
const mulitply = function() {
|
|
|
|
}
|
|
|
|
const power = function() {
|
|
|
|
}
|
|
|
|
const factorial = function() {
|
|
|
|
}
|
|
|
|
module.exports = {
|
|
add,
|
|
subtract,
|
|
sum,
|
|
multiply,
|
|
power,
|
|
factorial
|
|
} |