Version: 1.0
The LBound function returns the lower limit for the elements in
an array.
By default, in the current versions of VBScript, the
LBound function always returns a zero.
<% Dim catarray(3) %>
<% catarray(0) = "Mountain lion" %>
<% catarray(1) = "Bobcat" %>
<% catarray(2) = "Jaguar" %>
<% =LBound(catarray) %>
0
<% Dim fisharray(2,3) %>
<% fisharray(0,0) = "Neon tetra" %>
<% fisharray(0,1) = "Angle fish" %>
<% fisharray(0,2) = "Discus" %>
<% fisharray(1,0) = "Golden dojo" %>
<% fisharray(1,1) = "Clown loach" %>
<% fisharray(1,2) = "Betta" %>
<% =LBound(fisharray, 2) %>
0