Flash / Flex / ActionScript/Array/toString — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:14, 26 мая 2010

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
    }
  }
}