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 662a7eb commit 3bec4b0Copy full SHA for 3bec4b0
Sprint-1/1-key-exercises/1-count.js
@@ -2,10 +2,5 @@ let count = 0;
2
3
count = count + 1;
4
5
-console.log(count);
6
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
7
// Describe what line 3 is doing, in particular focus on what = is doing
8
-// The '=' assignment operator. It assigns the value on the right hand side to the variable on the left.
9
-// The variable 'count' is initially assigned the value of 0.
10
-// And the result is assigned back to count.
11
-// This mean 'count; is updated each time this line runs.
0 commit comments