List:Boolean
This topic describes the syntax and usage of the List:Boolean function in Zoho Creator
Description
The List:Boolean function creates an empty boolean list.This list can hold only boolean values.
Syntax
List:Boolean()
Return Value
Returns an empty boolean list.
Example
Options = List:Boolean();
Options.add(true);
Options.add(false);