Files
2026-05-17 20:06:54 +03:00

12 lines
213 B
JavaScript

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);