|
|
|
|
Functions
MioScript Reference
|
|
Syntax
Parameters
| ARRAY | Array | Name of the variable containing the array. |
Return value
Description
Returns the number of items in the array.
If the array contains only one item and if this item is empty.
See also: var.array.count |
MioScript Sample Code
&myArray[] = "Item 1^^Item 2^^Item 3"
for(&ptr, 0, var.array.countEx(myArray))
alert(&myArray[&ptr])
for.next |
|
|
|