SyntaxFix
Write A Post
Hire A Developer
Questions
both works similar but "===" even do case statements
"test" == "test" #=> true "test" === "test" #=> true
here the difference
String === "test" #=> true String == "test" #=> false