append ruby list code example
Example: 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]
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]