123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- // var arr = [1,2,3,4,5,6,7,8,9];
- // console.log(arr.slice(1));
- function foo(){
- console.log(arguments);
- console.log(Array.prototype.slice.call(arguments,0))
- }
- foo(1,2,3,4,5,6)
- </script>
- </body>
- </html>
|