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 c106376 commit 21f7d70Copy full SHA for 21f7d70
Sprint-1/1-key-exercises/1-count.js
@@ -2,5 +2,10 @@ let count = 0;
2
3
count = count + 1;
4
5
+console.log(count);
6
+
7
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
8
// Describe what line 3 is doing, in particular focus on what = is doing
9
10
+// Line 3 takes the current value of count (0), adds 1 to it,
11
+// and assigns the result (1) back to the count variable using =.
0 commit comments