|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| var.getIndex(variableName) |
Parameters
| Variable | variableName | Name of the variable. |
Return value
Description
Returns the index of a variable.
Value of the variable can be retrieved using the index with var.getIndex. |
MioScript Sample Code
&myVar = "Hello, World"
&value = var.get(var.getIndex(myVar))
alert(&value) |
|
|
|