RemoveLast - Array
Jump to navigation
Jump to search
Member of: All Arrays
Removes the last item from the array, shrinking it to fit.
Syntax[edit | edit source]
Function RemoveLast() native
Parameters[edit | edit source]
None
Return Value[edit | edit source]
None
Examples[edit | edit source]
; Remove the last item from the array
MyStringArray.RemoveLast()
; In this case, ["Hello", "world"] would become ["Hello"]