More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
= arrayAdd = | |||
= arrayAdd = | |||
Inserts a new item into a specific array. | Inserts a new item into a specific array. |
Revision as of 08:30, 15 December 2011
arrayAdd
Inserts a new item into a specific array.
Syntax
arrayAdd(array, item)
Arguments
array: Is an array.
item: Is an expression of any data types defined.
Return type
empty
Examples
{
number item = 1;
array a = {3, "2"};
arrayAdd(a, item);
print(a);
}
Availability
Version 4.8