nColumns function

float nColumns(array)

array float[]string[]bool[]

Returns the number of columns in array.

Related

Example

const array = [1, 2, 3;
               4, 5, 6]

Example --> print(nColumns(array)) // 3