array_length


array_length(a)
      

Return the number of elements in the array a.

Examples:


let a = #[1, 2, "hi", 'abc]
array_length(a)
// 4
      

Also see:

count


Core Module Index | Contents