Exercise:
Create a Date object to display the current date and time.
Hint
Hint: Use the new Date() constructor.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> // Add some code here </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> document.getElementById("demo").innerHTML = new Date(); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy