Exercise:
Call the function.
Hint
To call a function, write the function name followed by a pair of parantheses.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = "Hello World!"; } // Call the function here </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = "Hello World!"; } myFunction(); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy