Skip to content

Commit 9f9df24

Browse files
committed
Increasing the variable count by 1
1 parent 3372770 commit 9f9df24

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ let count = 0;
22

33
count = count + 1;
44

5+
/* The line 3 is increasing the variable count by 1 and assigning the result to count variable on the left hand * side.
6+
*/
7+
58
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
69
// Describe what line 3 is doing, in particular focus on what = is doing

0 commit comments

Comments
 (0)