#javascript #js #equals #doubleEquals
The main difference between the == and === operator in Javascript is that the == operator does the type conversion of the operands before comparison, whereas the === operator compares the values as well as the data types of the operands.