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