List.Last
List.Last(list as list, optional defaultValue as any) as any
返回 list
列表的最后一项,如果列表为空,则返回可选默认值 defaultValue
。 如果列表为空且未指定默认值,则函数返回 null
。
查找列表 {1, 2, 3} 中的最后一个值。
使用情况
List.Last({1, 2, 3})
输出
3
查找列表 {} 中的最后一个值,如果列表为空,则返回 -1。
使用情况
List.Last({}, -1)
输出
-1