🤔 What is the difference between Javascript == and === operators ❓
=} Both are comparison operators in Javascript and returns true if both left side and right side values are equal, but there is slight difference between both operators, first of all double equal operator only compares values except values types and it is called loose equality operator, on the other hand the triple equal operator is strict equality operator and it compares values as well as the type of values and returns true if both value and type are matched.