Prev Demo
JavaScript
>
Not Equal Operator With Two Different Values In Javascript
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Not equal to operator</h1> <b>Assigning 'a' value as 30 and checking the value with '10' in not equal to operator, so the result gives</b> <p id="myId"></p> <script> var a = 30; document.getElementById("myId").innerHTML = (a != 10); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output