语法
- float nRows(array)
参数
- array -(float[]、string[]、bool[])
返回
array 中的行数。
相关内容
示例
打印大小
const array = [1, 2, 3;
4, 5, 6]
Example --> print(nRows(array)) // 2
array 中的行数。
const array = [1, 2, 3;
4, 5, 6]
Example --> print(nRows(array)) // 2