Skip to content

Commit 7069bdc

Browse files
committed
Change 1-count.js file
1 parent 269ce23 commit 7069bdc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ count = count + 1;
66
// Describe what line 3 is doing, in particular focus on what = is doing
77

88
/**
9-
* Line 3 increase the count variable by 1 then assign the result in right hand side to count variable
9+
* Line 3: the variable count in right end side increment by 1 and assign the result to left end side which hold the
10+
* incremention
1011
*/
1112

12-
console.log('Value of count variable: ', count)
13+
console.log('Value of count variable after incremented by 1: ', count)
1314

0 commit comments

Comments
 (0)