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 b401696 commit 9facd61Copy full SHA for 9facd61
Sprint-1/exercises/count.js
@@ -1,6 +1,10 @@
1
+// Line 1 is a variable declaration, creating the count variable with an initial value of 0
2
+// Describe what line 3 is doing, in particular focus on what = is doing
3
+
4
let count = 0;
5
6
count = count + 1;
7
+console.log(count);
8
9
+// line 3 is taking the first value and reassings this new value to count its value + the number 1
10
-// Line 1 is a variable declaration, creating the count variable with an initial value of 0
-// Describe what line 3 is doing, in particular focus on what = is doing
0 commit comments