In python, you can do this:
[([None] * 9) for x in range(9)]
and you\'ll get this:
[[None, None, None, None, None, None, No
With ES6 spread operator: Array(9).fill([...Array(9)])
Array(9).fill([...Array(9)])