actionscript array question

Posted by Comma on Stack Overflow See other posts from Stack Overflow or by Comma
Published on 2010-06-07T04:38:29Z Indexed on 2010/06/07 4:42 UTC
Read the original article Hit count: 135

Filed under:
var array1:Array = new Array();
var array2:Array = new Array();

var obj1:Object = new Object();

array1.push(obj1);
array2.push(obj1);


if i change something in obj1 will array1[0] and array2[0] also change?

© Stack Overflow or respective owner

Related posts about actionscript-3