Method: Array#third

Defined in:
activesupport/lib/active_support/core_ext/array/access.rb

#thirdObject

Equal to self[2].

%w( a b c d e ).third # => "c"


62
63
64
# File 'activesupport/lib/active_support/core_ext/array/access.rb', line 62

def third
  self[2]
end