Javascript examples for Operator:Quiz
Choose the correct comparison operator to display "true", when: 10 is NOT equal to 8.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = 10 != 8; </script>/*from w ww . j a va 2 s. co m*/ </body> </html>