You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sprint-1/1-key-exercises/1-count.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,4 @@ let count = 0;
3
3
count=count+1;
4
4
5
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
6
+
// Line 3 is adding 1 to the initial count of 0 which is given in the variable declaration (Describe what line 3 is doing, in particular focus on what = is doing)
0 commit comments