fork download
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. var arr = [];
  5. function execu(){
  6. for (var ii = 0; ii <= 10; ii++)
  7. arr[ii] = ii;
  8. alert(arr);
  9. };
  10. </script>
  11. </head>
  12. <body>
  13.  
  14. <h1>Ten numbers showcase</h1>
  15. <p id="demo">press the button</p>
  16.  
  17. <button type="button" onclick="execu()">alert numbers</button>
  18.  
  19. </body>
  20. </html>
  21.  
  22.  
Runtime error #stdin #stdout 0.27s 213120KB
stdin
Standard input is empty
stdout
Standard output is empty