This commit is contained in:
2026-06-05 14:20:55 +03:00
commit 28b7f01009
12 changed files with 135 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
const myArray = [];
for (let x = 0; x < 10; x++) {
myArray.push(x + 1);
}
console.log(myArray);
for (let val of myArray) {
console.log(val);
}