Easy
How do you add elements to an array?
Author: HivebriteStatus: PublishedQuestion passed 262 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Ruby
2
What is the output of the following code?
class Person
attr_accessor :name
end
person = Person.new
person.name = 'John'
puts person.name
0
Write a Ruby program that prints the sum of two numbers0
How to add a gem to a Ruby project?0
How to use blocks in Ruby0
What is the output of the following Ruby code? `numbers = [1, 2, 3, 4, 5]`
`numbers.each { |n| puts n }`
`numbers.map { |n| puts n }`