Answers for "ruby remove first n elements of array"

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
0

rails array pop first n elements

array = [1, 2, 3, 4, 5, 6]
array.drop(2)

# => [3, 4, 5, 6]
Posted by: Guest on March-19-2021

Code answers related to "ruby remove first n elements of array"

Browse Popular Code Answers by Language