Working with a Subset of Your Array with slice() : slice « Array « Flash / Flex / ActionScript






Working with a Subset of Your Array with slice()

 

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

        var metals:Array = ["iron", "copper", "gold", "silver","platinum", "tin", "chrome"];
        var preciousMetals:Array = metals.slice(2,5);
        trace(preciousMetals); // Displays: gold,silver,platinum

    }
  }
}

        








Related examples in the same category

1.slice() accepts negative numbers, which count from the end of the array rather than the beginning.