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