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