Answers for "remove first element of array ruby"

0

ruby delete first element of array

a = [0,1,2,3]

a.drop(1)
# => [1, 2, 3] 

a
# => [0,1,2,3]
Posted by: Guest on March-14-2021

Code answers related to "remove first element of array ruby"

Browse Popular Code Answers by Language