Skip to content

Commit b2e0a5d

Browse files
committed
minor
1 parent 024cbc0 commit b2e0a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-1/1-key-exercises/1-count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ count = count + 1;
77
Line one shows the initial value is 0 as a variable Declaration,
88
Line 3 on the right-hand side count + 1 is evaluated first which means the current value 0 adds 1, giving 1
99
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
10+
count. So after this runs the output should be 1.

0 commit comments

Comments
 (0)