Skip to content

Commit 3bec4b0

Browse files
Remove Sprint-1 1-count.js from this branch
1 parent 662a7eb commit 3bec4b0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

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

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

33
count = count + 1;
44

5-
console.log(count);
65
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
76
// Describe what line 3 is doing, in particular focus on what = is doing
8-
// The '=' assignment operator. It assigns the value on the right hand side to the variable on the left.
9-
// The variable 'count' is initially assigned the value of 0.
10-
// And the result is assigned back to count.
11-
// This mean 'count; is updated each time this line runs.

0 commit comments

Comments
 (0)