August 2001
Intermediate to advanced
976 pages
38h 8m
English
ArrayLen
ArrayLen(array)Determines the length of the specified array. The following example
returns the number of elements in the one-dimensional array
Grades:
<CFSET Grades = ArrayNew(1)> <CFSET Grades[1] = 95> <CFSET Grades[2] = 93> <CFSET Grades[3] = 87> <CFSET Grades[4] = 100> <CFSET Grades[5] = 74> <CFOUTPUT>The array <B>Grades</B> contains #ArrayLen(Grades)# elements.</CFOUTPUT>
Read now
Unlock full access