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