Returns true if the two values are either of different types or are different values.
Syntax
valueA !== valueBExample
var foo = "5";
if (foo !== 5)
return true; //Returns true because foo == "5" (the string "5").Remarks
One value may be either a different type or a different value for this statement to return true.
