Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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)

...