Returns the number of elements in an array.
PHP
$a = array('first' => 1, 'second' => 2); echo count($a); // => 2
Ruby
my_array = [1, 2]; puts my_array.length; # => 2
Name (required)
Mail (will not be published) (required)
Website