Javascript examples for DOM:Document write
Document write() Method - Write the Date object directly to the HTML document:
<!DOCTYPE html> <html> <body> <h1>Hello World</h1> <script> document.write(Date());/* w w w . j av a2 s .c om*/ </script> </body> </html>