10 Most Common JavaScript FAQs in One Place
1) What is the use of === in JavaScript?
The triple equals operator (===) is a comparison operator in JavaScript that returns true if the two operands are strictly equal (type and value) and false otherwise.
Strict equality (===) is different from abstract equality (==). Abstract equality allows for implicit type coercion, while strict