Pregunta de entrevista de ZeOmega

diffrence between== and ===

Respuestas de entrevistas

Anónimo

13 ago 2021

=== checking value and it's type also

Anónimo

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