Skip to content

Commit f5d4ab6

Browse files
committed
completed count.js
1 parent 3372770 commit f5d4ab6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@ count = count + 1;
44

55
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
66
// Describe what line 3 is doing, in particular focus on what = is doing
7+
8+
// count is a variable
9+
10+
// line 1 - count is declared as 0
11+
12+
// line 3 - they are adding count + 1 to count

0 commit comments

Comments
 (0)