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 024cbc0 commit b2e0a5dCopy full SHA for b2e0a5d
Sprint-1/1-key-exercises/1-count.js
@@ -7,4 +7,4 @@ count = count + 1;
7
Line one shows the initial value is 0 as a variable Declaration,
8
Line 3 on the right-hand side count + 1 is evaluated first which means the current value 0 adds 1, giving 1
9
The left-hand side count= means: Assign the result of right-hand side 1 back into the variable
10
-count. So after this runs the output should be 1
+count. So after this runs the output should be 1.
0 commit comments