Javascript examples for Date:Quiz
Use the toDateString() method to convert the date to a more readable format.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = new Date().toDateString(); </script>//from ww w . j a va2 s . com </body> </html>