mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-16 21:23:23 +09:00
Standardised function declaration calls across exercises
This commit is contained in:
+12
-12
@@ -1,25 +1,25 @@
|
||||
function add () {
|
||||
|
||||
const add = function() {
|
||||
|
||||
}
|
||||
|
||||
function subtract () {
|
||||
|
||||
const subtract = function() {
|
||||
|
||||
}
|
||||
|
||||
function sum () {
|
||||
|
||||
const sum = function() {
|
||||
|
||||
}
|
||||
|
||||
function multiply () {
|
||||
|
||||
const mulitply = function() {
|
||||
|
||||
}
|
||||
|
||||
function power() {
|
||||
|
||||
const power = function() {
|
||||
|
||||
}
|
||||
|
||||
function factorial() {
|
||||
|
||||
const factorial = function() {
|
||||
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
||||
Reference in New Issue
Block a user