Whatever message this page gives is out now! Go check it out!
ArrayIsEmpty(array) |
| Parameter | Description |
array | Name of an array |
ArrayIsEmpty(MyArray2[1]) |
<cfscript>
someArray = [1,2,3,4,5];
writeOutput(arrayIsEmpty(someArray)); // Returns False
</cfscript>