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