Versions Compared

Key

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

 

Excerpt

...

Excerpt

addElement(

...

listvalue) Adds a value to the end of a list and returns the list.

Syntax

addElement(list, value)

ArgumentTypeDescription
listAnyThe list to which value should be added. If this argument is a variable which evaluates to null then a new list will be returned containing only value. If this argument is not a list but a single value then a new list will be returned containing this argument and value.
valueAnyThe item that should be added to list

...