Skip to content

Commit 2ddf2a2

Browse files
updating line 3
1 parent e829acf commit 2ddf2a2

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
@@ -5,4 +5,4 @@ count = count + 1;
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
77

8-
// Line 3 is an assignment where = is an assignment operator and in there we are adding value of 1 to the count variable
8+
// Line 3 is an increment where = is an assignment operator and in there we are adding value of 1 to the count variable

0 commit comments

Comments
 (0)