
<!DOCTYPE html>
<html lang="de">
   <head>
     <meta charset="utf-8">  
     <title> Funktion ohne Parameter</title>
     <script>
        function hallo(){
        document.write("Hallo miteinander"+"<br>")
        }
        hallo();
        hallo();
        hallo();
     </script>
   </head>

   <body>
   </body>
</html>
