ruby put item in array code example
Example 1: ruby append to array
array = []
array << "element 1"
array.append "element 2"
puts array
# ["element 1", "element 2"]
Example 2: 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]