Deletes an element from an array and resizes the array so that the deleted element doesn't leave a gap.
arrayDeleteAt(array array,number position): boolean
| Return Type |
| boolean |
The arguments for this function are set. You can not use other arguments except the following ones.
| Name | Type | Required | Description |
| array | array | Yes | The array that the element will be deleted from. |
| position | number | Yes | The numeric position of the element. Remember that CFML arrays start at 1 not 0. |
Categories: