The type of the elements in the input array.
The 2D array to convert.
The converted 2D array where each element is a string.
const input: number[][] = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
arrTableEachToString(input);
//=> [['1', '2', '3'], ['4', '5', '6'], ['7', '8', '9']]
Generated using TypeDoc
Coerce each value of a 2D array table to string.