Skip to content

Commit 458e155

Browse files
committed
1-count.js updated template
1 parent 8f3d6cf commit 458e155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-1/1-key-exercises/1-count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ let count = 0;
33
count = count + 1;
44

55
// 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

Comments
 (0)