mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-18 22:23:21 +09:00
Order exercise folders
Ordered the exercise folders by placing their numbers in their folder name
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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
|
||||
};
|
||||
Reference in New Issue
Block a user