6.剩余参数rest.html 520 B

123456789101112131415161718192021222324
  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. /**
  11. * ...rest 剩余的 函数的参数里
  12. */
  13. // function fn1(...rest) {
  14. // console.log(...rest)
  15. // }
  16. // fn1(1,2,3,4,5,6,7,8,9);
  17. function fn2() {
  18. // arguments 实参
  19. console.log(...arguments);
  20. }
  21. fn2(1,2,3,4,5);
  22. </script>
  23. </body>
  24. </html>