August 2003
Intermediate to advanced
1140 pages
68h 45m
English
ArrayPrepend
ArrayPrepend(array, value)
Adds a value to the beginning of an array.
A value of true is returned upon successful
completion. The following example adds an element to the beginning of
an array:
<cfset Grades = ArrayNew(1)> <cfset Grades[1] = 95> <cfset Grades[2] = 93> <cfset Grades[3] = 87> <cfset Grades[4] = 100> <cfset Grades[5] = 74> <b>Original Array:</b><br> <cfdump var="#Grades#"> <p>Prepend the value 80 to the array:<br> <cfset ArrayPrepend(Grades, "80")> <p><b>New Array:</b><br> <cfdump var="#Grades#">