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
+
// So line 3 is adding the value of the variable we created which is count and assigned it as zero by 1. Or we are updating count to be one more than it was before.
0 commit comments