Returns the third item in a list . If list contains less than three elements, it returns NoValue .
third ( list As List ) As Any
| Argument | Type | Description |
|---|---|---|
| list | List | The input list . |
Intent >third({5, 3, 6})
--> 6
Intent >third({"a", "b"})
--> NoValue