Javascript examples for Operator:Quiz
Choose the correct comparison operator to display "true", when: 5 is less than 7.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = 5 < 7; </script>/*from ww w. ja v a2 s .co m*/ </body> </html>