Exercise:
Use the if statement to output some text if 5 is greater than 2.
Hint
Syntax hint: if (x > y)
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> if () { document.getElementById("demo").innerHTML = "Well done!"; } </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> if (5 > 2) { document.getElementById("demo").innerHTML = "Well done!"; } </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy