![]() ![]() | |
Flash Player 5.
expression1&=expression2
None.
Nothing.
Operator; assigns expression1 the value of expression1 & expression2. For example, the following two expressions are the same.
x &= y;
x = x & y;
The following example assigns the value 9 to x.
x = 15;y = 9;trace(x &= y); // returns 9
![]() ![]() | |