ArrayDeleteAt
Delete item at specified index in array
Method Signature
Arguments
Argument
Type
Required
Description
Default
array
modifiableArray
true
The array to be deleted from.
index
integer
true
The index to deleted.
Examples
Simple example for arrayDeleteAt function
Uses the arrayDeleteAt function to delete the value in specific position
Result: ["Red", "White", "Blue", "Pink"]
Simple example with member function
Uses the member function is the same as running arrayDeleteAt.
Result: ["Red", "Green", "Blue", "Pink"]
Additional Examples
Related
Last updated
Was this helpful?