index.html 601 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>rest</title>
  8. </head>
  9. <body>
  10. <script>
  11. //es5获取方式
  12. function date(){
  13. console.log(arguments) //对象,并非数组
  14. }
  15. date(1,2,3,4);
  16. //es6获取方式:rest参数放置最后,否则报错
  17. function date1(a,b,...args){
  18. console.log(args) //数组
  19. }
  20. date1(1,2,3,4)
  21. </script>
  22. </body>
  23. </html>