hw06_12.html 216 B

1234567891011121314
  1. <header>
  2. <h1>Arrey Equals</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const arr = [1, 2, 3, 4, 5];
  7. let a = arr;
  8. const arr2 = arr;
  9. let b = arr2;
  10. alert(a===b);
  11. </script>
  12. </body>