We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91ff21a commit 99e4c5eCopy full SHA for 99e4c5e
assignments/function-conversion.js
@@ -1,5 +1,5 @@
1
// Take the commented ES5 syntax and convert it to ES6 arrow Syntax
2
-
+
3
// let myFunction = function () {};
4
5
// let anotherFunction = function (param) {
@@ -9,7 +9,7 @@
9
// let add = function (param1, param2) {
10
// return param1 + param2;
11
// };
12
-// add(1,2);
+// add(1,2);
13
14
let subtract = function (param1, param2) {
15
return param1 - param2;
0 commit comments