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"
55 56 57 |
# File 'lib/active_support/core_ext/array/access.rb', line 55 def second self[1] end |