Project 1
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user