Gibt das dritte Element in einem list . Wenn list weniger als drei Elemente enthält, gibt er NoValue .
third ( list As List ) As Any
Argument | Typ | Beschreibung |
---|---|---|
list | List | Die Eingabe list . |
Intent >third({5, 3, 6})
--> 6
Intent >third({"a", "b"})
--> NoValue