Skip to content

Commit 98ceee2

Browse files
committed
replacing count.js
1 parent e5c1675 commit 98ceee2

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@ 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-
// Line 3 is reassigning the value of the variable count by adding 1 to its initial value.
8-
// The = sign is assigning the result of the expression on the right side (count + 1) to the variable count on the left side.
9-
//

0 commit comments

Comments
 (0)