Javascript examples for Operator:Comparison Operators
Compare two values for equality
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/* w ww. j ava 2s . co m*/ var x = 10; var y = 5; x = y; document.getElementById("demo").innerHTML = x; } </script> </body> </html>