IsEmpty
Determine whether a given value is empty.
We check for emptiness of anything that can be casted to: Array, Struct, Query, or String.
Method Signature
IsEmpty(value=[any])Arguments
Argument
Type
Required
Description
Default
value
any
true
The value/object to check for emptiness.
Examples
Test to see if a struct is empty
myStruct = {};
writeOutput( structIsEmpty( myStruct ) );
Result: true
Test to see if a struct contains something
Result: false
Using Member Function
Result: true
Additional Examples
Related
Last updated
Was this helpful?
