Syntax
| array_insertItem(Source, Index, Item, Unique) |
Parameters
| ARRAY | Source | Source Array
| | INT | Index | Where to insert the new item
| | STRING | Item | Item to be added
| | BOOL | Unique | Optional. Set to true if the string should not be added if it already exists in the array (case insensitive). Default value is false. |
Return value
Description
| Insert an item into a JavaScript array. |
|