Converts a value to Group.
togroup( value, … )
value (Any Type): Value to convert.
Group
When operating on arrays, it is not necessary to use apply
with togroup
. If multiple parameters are passed, or one parameter is an Array, togroup
will parameters return a Group Array.
You can experiment with this function in the test box below.
Test Input
togroup(1)
returns [Group:1]
togroup(1,2)
and togroup({1,2})
both return {[Group:1],[Group:2]}
On This Page