Use a for statement that loops backward from Array. length -1 to 0, decrementing by one each time. : Loop through : Array Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Array » Loop through »

 

Use a for statement that loops backward from Array. length -1 to 0, decrementing by one each time.


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var letters:Array = ["a""b""c"];
        
        for (var i:int = letters.length - 1; i >= 0; i--){
          trace("Element " + i + ": " + letters[i]);
        }

    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Array
» Loop through