document.writeln()





index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <script>
  •   var val=5;
  •   document.writeln('Hello World!');
  •   document.writeln("Привет Мир!");
  •   document.writeln(val);
  •   document.writeln(val+10);
  •   document.writeln(val+' Hello World! '+10);
  •  </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  • </head>
  • <body>
  •  <script>
  •   var val=5;
  •   document.writeln('Hello World!');
  •   document.writeln("Привет Мир!");
  •   document.writeln(val);
  •   document.writeln(val+10);
  •   document.writeln(val+' Hello World! '+10);
  •  </script>
  • </body>
  • </html>