![]() ![]() ![]() | |
![]() | |
![]() | |
![]() |
Flash Player 5.
expression1
^=
expression2
expression1,expression2
Integers and variables.
None.
Operator (bitwise compound assignment); assigns expression1
the value of expression1
^
expression2
. For example, the following two statements are the same:
x ^= y
x = x ^ y
The following is an example of a ^= operation.
// 15 decimal = 1111 binary
x = 15;
// 9 decimal = 1001 binary
y = 9;trace(x ^= y);
//returns 6 decimal
( = 0110 binary)
![]() | |
![]() | |
![]() | |
![]() ![]() ![]() |