Help for this page

Select Code to Download


  1. or download this
    @array = sort { $a <=> $b } @array;
    
  2. or download this
    @array = sort { $a->{time} <=> $b->{time} } @array;
    
  3. or download this
    @array = sort { $b->{time} <=> $a->{time} } @array;
    
  4. or download this
    @array = sort { uc $a->{time} cmp uc $b->{time} } @array;