Skip to content

Commit 7d51c81

Browse files
committed
Initial commit
1 parent fe1cf45 commit 7d51c81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
let i = 10;
2-
while (i <= 15) {
1+
let i = 10; //at which number to start with
2+
while (i <= 15) { // then to which number to stop
33
console.log(i);
4-
i++;
4+
i++; // how to move to the next element
55
}

0 commit comments

Comments
 (0)