Method: Array#fifth
- Defined in:
- lib/active_support/core_ext/array/access.rb
#fifth ⇒ Object
Equal to self[4]
.
%w( a b c d e ).fifth # => "e"
80 81 82 |
# File 'lib/active_support/core_ext/array/access.rb', line 80 def fifth self[4] end |