EPAM Systems Interview Question

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

Interview Answer

Anonymous

Jun 19, 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