Difference between revisions of "ArrayAdd"
(jrfconvert import) |
(→arrayAdd) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | = 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); // {3,2,1}'' |
− | '' | + | '''Availability''' |
− | + | Version 4.8 __NOTOC__ <!-- imported from file: 453.htm--> | |
− | + | [[Category:Collection_Functions]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 04:31, 20 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); // {3,2,1}
Availability
Version 4.8