Lets say I have an array
[0, 132, 432, 342, 234]
What is the easiest way to get rid of the first element? (0)
Use the shift method on array
shift
>> x = [4,5,6] => [4, 5, 6] >> x.shift => 4 >> x => [5, 6]
If you want to remove n starting elements you can use x.shift(n)
x.shift(n)