What is the difference between #== and #===?

Technology CommunityCategory: RubyWhat is the difference between #== and #===?
VietMX Staff asked 3 years ago

#== performs the generic comparison while #=== performs case equality comparison and is useful for providing meaningful semantics in case statements.