mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-13 11:46:03 +09:00
@@ -1,26 +1,14 @@
|
||||
const add = function() {
|
||||
function add() {}
|
||||
|
||||
}
|
||||
function subtract() {}
|
||||
|
||||
const subtract = function() {
|
||||
function sum() {}
|
||||
|
||||
}
|
||||
function multiply() {}
|
||||
|
||||
const sum = function() {
|
||||
function power() {}
|
||||
|
||||
}
|
||||
|
||||
const multiply = function() {
|
||||
|
||||
}
|
||||
|
||||
const power = function() {
|
||||
|
||||
}
|
||||
|
||||
const factorial = function() {
|
||||
|
||||
}
|
||||
function factorial() {}
|
||||
|
||||
module.exports = {
|
||||
add,
|
||||
@@ -28,5 +16,5 @@ module.exports = {
|
||||
sum,
|
||||
multiply,
|
||||
power,
|
||||
factorial
|
||||
factorial,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user