How to arrange the position according to the data from the array

    test = 
   [
        ["qwe","1"],
        ["ewq","2"],
        ["www","4"]
        ["aaa","3"],
    ]

an array of segments as above

I want to rank according to the numbers coming from the array, not the index position of the array

can this be done?

the following is how to modify

according to the array index position.
<div class="container">
     <div>
        <ng-container *ngIf="test[0]">
            <span>{{test[0][0]}}</span>
        </ng-container>
     </div>
     <div>
        <ng-container *ngIf="test[1]">
            <span>{{test[1][0]}}</span>
        </ng-container>
     </div>
     <div>
        <ng-container *ngIf="test[2]">
            <span>{{test[2][0]}}</span>
        </ng-container>
     </div>
     <div>
        <ng-container *ngIf="test[3]">
            <span>{{test[3][0]}}</span>
        </ng-container>
     </div>
     
    </div>

Jun.15,2022

  let newTest = test.sort(function(a,b){
      return a[1]-b[1]
  })

after sorting, it is convenient to render

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-15ce948-7c60.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-15ce948-7c60.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?