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 dd85a1d commit c7ddaedCopy full SHA for c7ddaed
Sprint-1/1-key-exercises/1-count.js
@@ -4,4 +4,8 @@ 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
+// 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