list length
(
list
)
length
Type:
For any types
t
(
[
t
]
)
->
Number
Gets the number of elements in the given list.
Examples
Click an example to insert it
list length
([
"a", "word", "list"
])
→
3
list length
([
2, 4, 6, 8
])
→
4
list length
([])
→
0