nRows function

Syntax

  • float nRows(array)

Parameters

  1. 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


In this topic