从右向左返回第一个让回调返回真值的元素索引。
array.find_last_index(callback)
callback
fn(value: Any, index: Int, current: Array) -> Any
Int:找不到时返回 -1。
Int
-1
items = [1, 2, 3] result = items.find_last_index(fn(value) { value })