not identically equal operator : Relational Operators : Operators JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Operators » Relational Operators »

 

not identically equal operator







The not identically equal operator is represented by an exclamation point followed by two equal signs (!==) and returns true only if the operands are not equal without conversion.








var sNum = "55";
var iNum = 55;
alert(sNum != iNum);    //outputs "false"
alert(sNum !== iNum);   //outputs "true"







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Operators
» Relational Operators