Skip to content

Commit f2aeade

Browse files
committed
updated 1-count.js line 3 description
1 parent 50cc867 commit f2aeade

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ count = count + 1;
66
// Describe what line 3 is doing, in particular focus on what = is doing
77

88
/*
9-
Line 3 is re-assigning the variable "count" with a new value that increases the previous value by 1
10-
9+
count = count + 1 increases the value of count by one, which is known as incrementing.
1110
*/

0 commit comments

Comments
 (0)