解决方法
你可以写:
ary[2..-1] # => [3,8]
-1是数组中最后一个元素的索引,有关更多信息,请参阅doc for Array#[]
.
Ruby中更好的替代方法是使用Array#drop
方法:
ary.drop(2) # => [3,8]