Pergunta de entrevista da empresa ZeOmega

diffrence between== and ===

Respostas da entrevista

Sigiloso

13 de ago. de 2021

=== checking value and it's type also

Sigiloso

16 de ago. de 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.