isempty

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

描述

如果列表为空,List - isempty 函数返回‘true’(否则,返回‘false’)

语法

list.isempty()

返回值

如果列表为空,则返回‘true’(否则,返回‘false’)

示例

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

x = colors.isEmpty(); // 返回 false