[...Array(9)].map(() => Array(10).fill(false))
vs
new Array(9).fill(new Array(10).fill(false))
The first one where we use t