Medium
What is the difference between my_hash.compact
and my_hash.compact!
?
Author: HivebriteStatus: PublishedQuestion passed 258 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
What is the difference between include, extend and prepend in Ruby?0
How to create a block in Ruby0
A Ruby library that makes it easy to write concurrent code without having to worry about thread safety.0
How to get the first 3 elements of an array in Ruby