VBScript Array Function
Complete VBScript Reference
The Array function returns a variant containing an array.
Note: The first element in the array is zero.
Syntax
| Parameter |
Description |
| arglist |
Required. A list (separated by commas) of values that is
the elements in the array |
Example 1
Dim a
a=Array(5,10,15,20)
document.write(a(3))
Output:
20
|
Example 2
Dim a
a=Array(5,10,15,20)
document.write(a(0))
Output:
5
|
Complete VBScript Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|