Exercise 5.2

This commit is contained in:
Karan
2021-11-24 19:36:45 +05:30
committed by GitHub
parent 9e5b119bdf
commit 7b6bbe367a
+7
View File
@@ -0,0 +1,7 @@
let counter = 0;
let step = 5;
do {
console.log(counter);
counter += step;
}
while (counter <= 100);