Versions Compared

Key

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



Excerpt
hiddentrue

copyList(array) This function returns a new list with the same values as the supplied list.


Function: copyList()

This function returns a new list with the same values as the supplied list.

...

ArgumentTypeDescription
arrayArrayList of values

Examples

copyList(["apple",1,"John",NULL,"dog"])

returns

["apple",1,"John",NULL,"dog"]


copyList(27)

returns

[27]

See Also