Name

ArrayPrepend

Synopsis

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#">

Get Programming ColdFusion MX, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.