mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
67 B
TypeScript
9 lines
67 B
TypeScript
let a = 2;
|
|
let b = 3;
|
|
|
|
a = 23;
|
|
a += 19;
|
|
|
|
a &&= 4;
|
|
a ||= 5;
|
|
a ??= 6; |