ArrayIsEmpty()
Determines if the array is empty.
	ArrayIsEmpty( array=array );
	
	Returns: Boolean
| Argument | Description | 
|---|---|
| 
									array
								array,
									
										required | edit Name of an array | 
Examples
editmyArray1 = array("Marcus","Sarah","Josefine");
myArray2 = arrayNew(1);
dump(var=arrayIsEmpty(myArray1),label="is myArray1 empty?");
dump(var=arrayIsEmpty(myArray2),label="is myArray2 empty?");
dump(var=myArray1.isEmpty(),label="using member function"); // false
See also
- Arrays
- Decision logic
- array.isEmpty()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)
