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 8f3d6cf commit beda3cdCopy full SHA for beda3cd
Sprint-1/1-key-exercises/1-count.js
@@ -1,6 +1,11 @@
1
let count = 0;
2
3
count = count + 1;
4
+console.log(count);
5
6
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
7
// Describe what line 3 is doing, in particular focus on what = is doing
8
+
9
+//Answer
10
+// The third line is a statement that reassigns the value of count to count + 1.
11
+// The assignment operator (=) updates the variable count with a new value.
0 commit comments