10
0

14_arguments.html 467 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. function foo(){
  11. console.log(arguments)
  12. for(var i=0;i<arguments.length;i++){
  13. console.log(arguments[i]);
  14. }
  15. console.log(arguments.callee)
  16. }
  17. foo(1,2,3,4,5)
  18. </script>
  19. </body>
  20. </html>