!== (Non-Identity) : Relational Operators : Operators JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Operators » Relational Operators »

 

!== (Non-Identity)







No type-conversion is performed on the expressions before the comparison is made.












<html>
    <script language="JavaScript">
    <!--
    if("87" !== 87)
    {
      document.write("The string 87 is NOT equal to the number 87");
    }
    else
    {
      document.write("The string 87 is EQUAL to the number 87");
    }
    -->
    </script>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Operators
» Relational Operators