ZeOmega interview question

diffrence between== and ===

Interview Answers

Anonymous

13 Aug 2021

=== checking value and it's type also

Anonymous

16 Aug 2021

== means that I want to relatively compare two values so 1 == '1' would be a true statement. === means that the comparison needs to be exact so 1 === '1' would be a false statement.