Skip to content

Commit 99e4c5e

Browse files
committed
first commit
1 parent 91ff21a commit 99e4c5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assignments/function-conversion.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Take the commented ES5 syntax and convert it to ES6 arrow Syntax
2-
2+
33
// let myFunction = function () {};
44

55
// let anotherFunction = function (param) {
@@ -9,7 +9,7 @@
99
// let add = function (param1, param2) {
1010
// return param1 + param2;
1111
// };
12-
// add(1,2);
12+
// add(1,2);
1313

1414
let subtract = function (param1, param2) {
1515
return param1 - param2;

0 commit comments

Comments
 (0)