Project MathsTable version 1

This commit is contained in:
2026-03-30 19:18:23 +03:00
parent 3fe61c0c5f
commit 559ae830cd
+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);