size

本节介绍 Zoho Creator 中的 list - size 函数的语法和使用。

描述

List - size 函数返回列表中的元素数目。

语法

list.size()

返回值

返回列表中的元素数目。

示例

colors = {"Red", "Blue", "Green", "Yellow"};

x = colors.size(); // 返回 4