1 This tests the bitwise operators work correctly in conjunction with undefined and null.
3 SUCCESS: 0 & undefined = 0
5 SUCCESS: 1 & undefined = 0
7 SUCCESS: 0 | undefined = 0
9 SUCCESS: 1 | undefined = 1
11 SUCCESS: 0 ^ undefined = 0
13 SUCCESS: 1 ^ undefined = 1