Answers for "ruby append to array"

5

append array in ruby

a = [ "a", "b", "c" ]
a.push("d", "e", "f")
#=> ["a", "b", "c", "d", "e", "f"]

a = [1, 2, 3]
a += [4, 5]
#=> [1, 2, 3, 4, 5]

a << 6
#=> [1, 2, 3, 4, 5, 6]
Posted by: Guest on September-22-2020
4

how to add to an array ruby

array.push('new element')
# OR
array << 'new element'
Posted by: Guest on June-11-2020
1

ruby append to array

array = []
array << "element 1"
array.append "element 2"
puts array

# ["element 1", "element 2"]
Posted by: Guest on March-27-2020
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
1

how to push into an array with ruby

#ruby syntax

some_array_name = ["information 1", "information 2"]
some_array_name.push("information 3")

#output will be => 
["information 1", "information 2", "information 3"]
Posted by: Guest on November-12-2019

Browse Popular Code Answers by Language