TypeScript Instantiate 2D Array

let myArray: boolean[][] = Array(10).fill([]).map(() => Array(10).fill(false));
tnebes