Standardised function declaration calls across exercises

This commit is contained in:
Michael Frank
2021-04-29 21:33:30 +12:00
parent c1b27dc68e
commit 791a579823
6 changed files with 27 additions and 31 deletions
+12 -12
View File
@@ -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 = {