Entfernen Sie das erste Element aus einem Array -Rubin
a = [1, 2, 3]
a.shift
# => [2, 3]
D734M37
a = [1, 2, 3]
a.shift
# => [2, 3]