In the previous post we learnt about the Equal value and Equal type, now we shall learn the Not equal value or Not equal type.
Not equal value or Not equal type is an comparison operator which is used to check whether the two operands are having not equal value or not equal type.
The symbolic representation of Not equal value or Not equal type is !==
.
In this any one should be different either value or type.
NOTE:
<b>Assigning equal value and differnt type to the operator gives the result as</b> <p id="myId"></p> <script> var a = 30; document.getElementById("myId").innerHTML = (a !== "30"); </script>
In the above code snippet we have given same value to the variable a
and to the operator, so the result gives 'true'.
OUTPUT
<b>Assigning same value and same type to the operator gives the result as</b> <p id="myId"></p> <script> var a = "30"; document.getElementById("myId").innerHTML = (a !== "30"); </script>
In the above code snippet we have assigned same value and same type to the variable a
and to the operator, so the result gives 'false'.
OUTPUT
<b>Assigning different value and different type to the operator gives the result as</b> <p id="myId"></p> <script> var a = 30; document.getElementById("myId").innerHTML = (a !== "20"); </script>
Different value and different type
In the above code snippet we have given different value and different type to the variable a
and to the operator, so the result gives 'true'.
OUTPUT
<b>Assigning different value and same type to the operator gives the result as</b> <p id="myId"></p> <script> var a = 30; document.getElementById("myId").innerHTML = (a !== 20); </script>
In the above code snippet we have given different values of same type to the variable a
and to the operator, so the result gives 'true'.
OUTPUT
Views: 29413 | Post Order: 170