This commit is contained in:
2026-06-05 14:20:55 +03:00
commit 28b7f01009
12 changed files with 135 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
let counter = 0;
let step = 4;
do{
counter = counter + step;
console.log(counter);
} while(counter < 100)