Answers for "how to get second to last element of array in ruby"

1

array ruby taking 3 last value

@numbers = [ 1, 2, 3, 4, 5, 6, 7, 8 ]
@numbers.last(2) # => [7,8]
Posted by: Guest on December-14-2020

Code answers related to "how to get second to last element of array in ruby"

Browse Popular Code Answers by Language