Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package {
  2. import flash.display.Sprite;
  3.  
  4. public class ArrayExample extends Sprite {
  5. public function ArrayExample() {
  6. var myArr:Array = new Array();
  7. trace(myArr.length); // 0
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment