distinct

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

描述

List - distinct 函数返回带有不同元素的列表。

语法

<list>.distinct()

其中,<list> 指的是列表类型的变量。

注:仅在脚本构建器的自由流程脚本模式下才支持此函数。

返回值

返回带有不同元素的列表。

示例

colors = {"red", "blue", "green", "yellow", "blue"};
colors.distinct(); //返回 {"red", "blue", "green", "yellow"}