Answers for "ruby add arrays"

1

how to add to array ruby

a = [ "a", "b", "c" ]
a.push("d", "e", "f")
        #=> ["a", "b", "c", "d", "e", "f"]
[1, 2, 3].push(4).push(5)
        #=> [1, 2, 3, 4, 5]
Posted by: Guest on February-17-2020
1

ruby push array

array = [1, 2, 3, 4] 
array.push(5)
array # => [1, 2, 3, 4, 5]
Posted by: Guest on June-10-2020

Browse Popular Code Answers by Language