content/flux/v0/stdlib/universe/length.md
length() returns the number of elements in an array.
(<-arr: [A]) => int
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Array to evaluate. Default is the piped-forward array (<-).
people = ["John", "Jane", "Abed"]
people |> length()// Returns 3