EPAM Systems interview question

Difference between "==" and "==="?

Interview Answer

Anonymous

19 Jun 2021

"==" checks only for equality in value, whereas "===" is a stricter equality test and returns false if either the value or the type of the two variables are different.

3