Gibt das dritte Element einer Liste zurück. Wenn die Liste weniger als drei Elemente enthält, wird NoValue zurückgegeben.
third ( list As List ) As Any
Argument | Typ | Beschreibung |
---|---|---|
List | Liste | Die Eingabe liste |
Intent >third({5, 3, 6}) --> 6
Intent >third({"a", "b"}) --> NoValue