We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baccbd1 commit 2134b01Copy full SHA for 2134b01
Week3/js-exercises/ex1-AddSix.js
@@ -6,7 +6,7 @@ Declare a function called `createBase`.The function takes a number as a paramete
6
return a closure, that adds a number to the base number argument.
7
8
Call the function three times. The return values should be:
9
- 15, 24, 36
+ 15, 24, 33
10
11
*/
12
@@ -17,4 +17,3 @@ function createBase( /* ???? */ ) {
17
const addSix = createBase(6);
18
19
// Put here your function calls...
20
-console.log(addSix());
0 commit comments