|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| var.array.insert(Array, Index, Value) |
Parameters
| ARRAY | Array | Name of the variable containing the array.
| | INT | Index | Index of the new item.
| | STRING | Value | Optional. Value of the new item. |
Return value
No value is returned.
Description
| Insert an item in an array. |
MioScript Sample Code
&myArray[] = "Item 1^^Item 2^^Item 3"
var.array.insert(myArray, 1, "New Item")
alert(&myArray[]) |
|
|
|