|
|
||
------------------------------------------------------- Array#each_index array.each_index {|index| block } -> array ------------------------------------------------------------------------ Same as Array#each , but passes the index of the element instead of the element itself. a = [ "a", "b", "c" ] a.each_index {|x| print x, " -- " } produces: 0 -- 1 -- 2 --