Returns true if both values are of the same type and are equal.
Syntax
valueA === valueB
Example
var foo = 5;
if (foo === 5)
return true; //Returns true because foo == 5 and is of the same type (Number).
Remarks
Both values must be of the same type for this expression to return true.