I have 2 multidimensional array, both of the same size. I need to copy the content from one to another. Is there a better way for doing that than this one??
for(var i : int = 0; i < cols; i++) {
for(var j : int = 0; j < rows; j++) {
myArr1_[j] = myArr2*[j];*_
}
* }*
EDIT: Im using JS.