<body> <button onclick="rza();">Click Me</button> <script> function rza() { for (var ghost = 20; ghost <= 40; ghost++) { alert(ghost); } } </script> </body>
<body> <script> window.onload = function() { for (var ghost = 20; ghost <= 40; ghost++) { alert(ghost); } }; </script> </body>
<body> <script> for (var ghost = 20; ghost <= 40; ghost++) { alert(ghost); } </script> </body>