I was browsing through some code and I was wondering how this could be useful
grid.push([].concat(row));
In my understanding it is the same as<
var canEmptyArray = []; grid = [...(grid), ...(canEmptyArray), ...(row)];
All arrays can be empty as long as it is in the array format