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