Question:What will be the output of the following code snippet? var myArray1 : Array = new Array ("One", "Two", "Three"); for(var i : int=0; i<3; i++) { delete myArray1[i]; } trace(myArray1.length);
A Undefined
B 0
C 3
D Runtime error: Null pointer reference
+ AnswerB
+ Report