Exercise:
Use the toDateString() method to convert the date to a more readable format.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = new Date(); </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = new Date().toDateString(); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy