Checking the Contents of an Array with the toString( ) Method : ToString : Array Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Array » ToString »

 

Checking the Contents of an Array with the toString( ) Method


 


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

        var sites = ["g""w""o"];
        trace("The array is " + sites)//The array is g,w,o

    }
  }
}

        



Leave a Comment / Note


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


Flash / Flex / ActionScript examples

 Navioo Array
» ToString