shift( ) removes an element from the beginning of an array : Shift : Array Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Array » Shift »

 

shift( ) removes an element from the beginning of an array


 

shift( ) returns the value of the element it removes. 

The remaining elements all move up in the pecking order toward the beginning of the array.


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


        var sports:Array = ["q""s""i"];
        trace(sports.shift(  ));  
        trace(sports.shift(  ));  


    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Array
» Shift