删除并返回指定下标的元素,支持负数下标。
array.remove_at(index)
items = ['a', 'b', 'c'] result = items.remove_at(-1) // 输出:c print result