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 50cc867 commit f2aeadeCopy full SHA for f2aeade
Sprint-1/1-key-exercises/1-count.js
@@ -6,6 +6,5 @@ count = count + 1;
6
// Describe what line 3 is doing, in particular focus on what = is doing
7
8
/*
9
-Line 3 is re-assigning the variable "count" with a new value that increases the previous value by 1
10
-
+count = count + 1 increases the value of count by one, which is known as incrementing.
11
*/
0 commit comments