There was an error while loading. Please reload this page.
1 parent 1937014 commit 6a7e2ddCopy full SHA for 6a7e2dd
study/Loops/loopingDownward.js
@@ -0,0 +1,8 @@
1
+for (let i = 5; i > 0; i--) {
2
+ console.log(i);
3
+}
4
+
5
+for (let i = 5; i >= 0; i--) {
6
7
8
0 commit comments