JavaScript » Comparison » ===

This is the strict equal operator and only returns a Boolean true if both the operands are equal and of the same type.

Examples

Code:
a === 2
b === 4
Explanation:

These examples return true.