Excerpt | ||
---|---|---|
| ||
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.
...
Argument | Type | Description |
---|---|---|
array | Array | List of values |
Examples
copyList(["apple",1,"John",NULL,"dog"])
returns
["apple",1,"John",NULL,"dog"]
copyList(27)
returns
[27]