Exercise:
Use the function to display "Hello John".
Hint
Hint: Call the function and pass "John" as the argument.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> function myFunction(name) { return "Hello " + name; } </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> function myFunction(name) { return "Hello " + name; } document.getElementById("demo").innerHTML = myFunction("John"); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy