...
Returns the number of elements in this list, 3
$list = [1,2,"many"],
countElements($list)
Returns 3 since this list has the value [1,2,"many"]
...
$userArray = split(in.users,","),
$numUsers = countElements($userArray)
...
...
Returns the number of elements in this list, 3
$list = [1,2,"many"],
countElements($list)
Returns 3 since this list has the value [1,2,"many"]
...
$userArray = split(in.users,","),
$numUsers = countElements($userArray)
...