Javascript examples for Date:Quiz
Create a Date object to display the current date and time.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = new Date(); </script>//from w w w . ja va2s.c o m </body> </html>