12 lines
201 B
Plaintext
12 lines
201 B
Plaintext
const myTable = [];
|
|
const numm = 10;
|
|
for(let x=0; x<numm; x++){
|
|
const temp = [];
|
|
for(let y = 0; y<numm; y++){
|
|
temp.push(x*y);
|
|
}
|
|
myTable.push(temp);
|
|
}
|
|
|
|
console.table(myTable);
|