Enumerate columns of grid, returning all the cells in the
same column as an array.
for (constcolofGrid.As.columns(grid)) { }
Use Grid.values to convert into values
for (constvalueofGrid.values(Grid.As.columns(grid))) { }
In the case of jagged arrays, it might be that some rows don't have
column as long as its peers. In those cases, it returns PlaceholderCell ({x: NaN, y: NaN}) for those positions.
Enumerate columns of grid, returning all the cells in the same column as an array.
Use
Grid.valuesto convert into valuesIn the case of jagged arrays, it might be that some rows don't have column as long as its peers. In those cases, it returns PlaceholderCell ({x: NaN, y: NaN}) for those positions.