class Array

def third_to_last

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

Equal to self[-3].
def third_to_last
  self[-3]
end