Usage
Syntax: array.addarray(obj)
Explanation
Concatenates two arrays.
Example
function onCreated() { temp.foo = {1, 2, 3}; temp.bar = {4, 5, 6}; temp.foo.addarray(temp.bar); echo(temp.foo); }
... Will echo "1,2,3,4,5,6".
Categories
CategoryObjectFunction
CategoryFunctionClientside
CategoryFunctionServerside
There are no comments on this page. [Add comment]