MCQs > IT & Programming > Actionscript 3 > What's the output? var myArray1 : Array = new Array('One', 'Two', 'Three'); var myArray2 : Array = myArray1; myArray2[1] = 'Four'; trace(myArray1);

Actionscript 3 MCQs

What will be the output of the following code snippet?

    var myArray1 : Array = new Array("One", "Two", "Three");
    var myArray2 : Array = myArray1;
    myArray2[1] = "Four";
    trace(myArray1);


Answer

Correct Answer: One,Four,Three

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Actionscript 3 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Actionscript 3 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it