Whatever message this page gives is out now! Go check it out!
ArrayResize(array, size) |
Parameter | Description |
array | Name of an array |
size | Minimum array size |
<cfscript>
myArray=ArrayNew(1)
// Resize that array to the number of records
temp = arrayResize(myArray, 8)
writeDump(myArray)
</cfscript>