ruby array push code example
Example 1: how to add to an array ruby
array.push('new element')
array << 'new element'
Example 2: ruby append to array
array = []
array << "element 1"
array.append "element 2"
puts array
Example 3: ruby push array
array = [1, 2, 3, 4]
array.push(5)
array
Example 4: how to push into an array with ruby
some_array_name = ["information 1", "information 2"]
some_array_name.push("information 3")
["information 1", "information 2", "information 3"]
Example 5: how to add to array ruby
a = [ "a", "b", "c" ]
a.push("d", "e", "f")
[1, 2, 3].push(4).push(5)