if two arrays are equivalent yet don't point to the same spot in memory, an equality operation returns false: : Compare « Array « Flash / Flex / ActionScript






if two arrays are equivalent yet don't point to the same spot in memory, an equality operation returns false:

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var letters1:Array = ["a", "b", "c", "d"];
        var letters2:Array = ["a", "b", "c", "d"];
        trace(letters1 == letters2);  // Displays: false

    }
  }
}

        








Related examples in the same category

1.Array reference
2.Create a duplicate copy of an array that is separate from the original using concat( ):
3.Using an equality operator with two array variables only checks to see if they point to the same spot in memory.
4.Loop through each of the elements of the arrays and compare them