6.rest.html 529 B

12345678910111213141516171819202122
  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. // ...变量名 rest
  11. function fn1(name,...age) {
  12. console.log(arguments)
  13. console.log(name,'name')
  14. console.log(age,'age')
  15. }
  16. fn1("图图",3,4,5,6)
  17. let [a,...x] = [1,2,3,4,5];
  18. console.log(a,'a')
  19. console.log(x,'x')
  20. </script>
  21. </body>
  22. </html>