|
var myArray:Array = {"RoseIndia", 10, new MyClass()}; |
|
var myArray:Array = new Array();myArray[0] = "RoseIndia";myArray[1] = 10; myArray[2] = new MyClass(); |
|
//push() adds the element in the last of the arraymy Array.push("RoseIndia"); // pop() removes the last element from the array. myArray.pop(); |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.