Hard
what is the purpose of adding the &
in result = @my_object&.my_method
?
Author: HivebriteStatus: PublishedQuestion passed 249 times
Edit
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
How to use blocks in Ruby0
How to change the value of a string in Ruby0
The `super` keyword calls the superclass method with the same parameters. If the superclass method cannot raise exceptions, `super` will not raise them either.0
Return the instance methods common to String, Integer and Array, returns an array