Whatever message this page gives is out now! Go check it out!
ArrayPrepend(array, value) |
Parameter | Description |
array | Name of an array |
value | Value to insert at beginning of array |
<cfscript>
myArray = [3,2,1];
arrayPrepend(myArray, 4);
writeDump(myArray);
</cfscript>