drop(n) -> Array
Enumerable オブジェクトの先頭の n 要素を捨てて、残りの要素を配列として返します。
a = [1, 2, 3, 4, 5, 0] a.drop(3) # => [4, 5, 0]