|
|
|
|
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 variable exists, the function always returns 1 or more, so it is not possible to know if the array is empty.
The function var.array.countEx makes it possible to know if the array is empty. |
MioScript Sample Code
&myArray[] = "Item 1^^Item 2^^Item 3"
for(&ptr, 0, var.array.count(myArray))
alert(&myArray[&ptr])
for.next |
|
|
|