mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
x.f() & 0x0A != 0; // $ Alert
|
|
x.f() & (0x0A != 0);
|
|
x.f() & 0x0A != 0;
|
|
x.f() & 0x0A!=0;
|
|
|
|
x !== y & 1; // $ Alert
|
|
|
|
x > 0 & x < 10;
|
|
|
|
a&b==c; // $ Alert
|