t.php 104 B

12345678
  1. <script>
  2. let a=[];
  3. a[3]='aaa'
  4. a[5] = 'bbb';
  5. a[1] = 'xxx';
  6. console.log(a)
  7. </script>