Help for this page

Select Code to Download


  1. or download this
    for $i(0..$length2){
        push @array2, $array[$i];
        $i+=2;
    }
    
  2. or download this
    for ($i=0;$i<=@array-2;$i+=2) {
        push @array2, $array[$i];
    }
    
  3. or download this
    for $i(1..$length){
        push @array2, $array[$i];
        $i+=2;
    }