Function arrTableRemoveColumns

  • Removes specified columns from a 2D array table.

    Parameters

    • table: string[][]

      The 2D array (table) from which columns will be removed. The first row of the table is assumed to contain column names.

    • Rest ...removeColumnNames: string[]

      The names of the columns to be removed. These should match the entries in the first row of the table.

    Returns string[][]

    A new 2D array (table) with the specified columns removed.

Generated using TypeDoc