Strict Equal

SWF Action
Action Category: 
Comparisons
Action Details: 
0
Action Identifier: 
102
Action Structure: 
<n.a.>
Action Length: 
0 byte(s)
Action Stack: 
pop 2 (a), push 1 (b)
Action Operation: 
a1 := pop();
a2 := pop();
r := a1 === a2;
push(r);
Action Flash Version: 
6

Pops two values and return whether they are strictly equal. No cast is applied to either s1 or s2. Thus two items of different type are not equal (0 == "0" is true, but 0 === "0" is false.)