Flash / Flex / ActionScript/Array/toString — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 09:19, 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
}
}
}