hw07_09.html 172 B

12345678910
  1. <header>
  2. <h1>destruct 3</h1>
  3. </header>
  4. <body>
  5. <script>
  6. let arr = [1, 2, 3, 4, 5, 6, 7, 10];
  7. let { 0: a, 1: b, length } = arr;
  8. </script>
  9. </body>