Javascript examples for Operator:Quiz
Display the sum of 1 + 5, using two variables x and y with the addition operator (+).
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 1;//from w w w . jav a2 s . co m var y = 5; document.getElementById("demo").innerHTML = x + y; </script> </body> </html>