We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1cf45 commit 7d51c81Copy full SHA for 7d51c81
otherChallenge/equivalentwhileLoop:
@@ -1,5 +1,5 @@
1
-let i = 10;
2
-while (i <= 15) {
+let i = 10; //at which number to start with
+while (i <= 15) { // then to which number to stop
3
console.log(i);
4
- i++;
+ i++; // how to move to the next element
5
}
0 commit comments