|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| var.array.remove(Array, Index) |
Parameters
| ARRAY | Array | Name of the variable containing the array.
| | INT | Index | Index of the item to be removed. |
Return value
No value is returned.
Description
| Remove an item from an array. |
MioScript Sample Code
&myArray[] = "Item 1^^Item 2^^Item 3"
var.array.remove(myArray, 1)
alert(&myArray[]) |
|
|
|