Whatever message this page gives is out now! Go check it out!
ArrayClear(array)| Parameter | Description |
array | Name of an array |
<cfscript>
myArray=[1,2,3,4,5];
// Clear myArray
WriteOutput(ArrayClear(myArray)); // Clears the array and returns True
WriteDump(myArray); // Returns an empty array
</cfscript>