Enumerate columns of grid, returning all the cells in the same column as an array.
for (const col of Grid.As.columns(grid)) {} Copy
for (const col of Grid.As.columns(grid)) {}
Use Grid.values to convert into values
Grid.values
for (const value of Grid.values(Grid.As.columns(grid))) {} Copy
for (const value of Grid.values(Grid.As.columns(grid))) {}
Optional
Enumerate columns of grid, returning all the cells in the same column as an array.
Use
Grid.values
to convert into values