Syntax
- float nRows(array)
Parameters
- array—(float[], string[], bool[])
Returns
The number of rows in array.
Related
Example
Print size
const array = [1, 2, 3;
4, 5, 6]
Example --> print(nRows(array)) // 2
The number of rows in array.
const array = [1, 2, 3;
4, 5, 6]
Example --> print(nRows(array)) // 2