Help for this page

Select Code to Download


  1. or download this
    @array = ("12 hours", "23 minutes", "17 seconds");
    
  2. or download this
    $last = pop(@array);
    $sentence = join ", ", @array;
    $sentence .= "," if ($#array > 0);
    $sentence .= " and " if ($#array > -1);
    $sentence .= "$last";