Array as function parameter

 

I am not sure if users can create a function with an array var.

Or such a function must always  be a built-in one 

 
dahumeovn:

I am not sure if users can create a function with an array var.

Or such a function must always  be a built-in one 

Yes you can pass an array to a function but you can't return an array from a function . . . if you want a function to modify an array you can pass it by reference.
 

Great, thank you

 
 
dahumeovn:

I am not sure if users can create a function with an array var.


"Constants, variable, expressions and arrays may be used as passed parameters."  See Passed Parameters and Return Value from the Book.
Reason: