Lets say I have an array
[0, 132, 432, 342, 234]
What is the easiest way to get rid of the first element? (0)
You can use:
a.delete(a[0]) a.delete_at 0
Both can work