We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a97c4f commit 567e88fCopy full SHA for 567e88f
Sprint-1/1-key-exercises/1-count.js
@@ -5,4 +5,7 @@ count = count + 1;
5
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
6
// Describe what line 3 is doing, in particular focus on what = is doing
7
// line 3 increases the value of count by 1.
8
-// the "=" operator assigns the result of "count + 1" back to the variable count.
+// 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