Skip to content

Commit 567e88f

Browse files
committed
Answered the question of line-9.
1 parent 7a97c4f commit 567e88f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ 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
// line 3 increases the value of count by 1.
8-
// the "=" operator assigns the result of "count + 1" back to the variable count.
8+
// the "=" operator assigns the result of "count + 1" back to the variable count.
9+
// Can you find out what one-word programming term describes the operation on line 3?
10+
// The one word term is "increment".
11+
// increment means increasing the value of a variable by 1.

0 commit comments

Comments
 (0)