File size: 117 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
let a = "";
a += "x";
let b = 0;
b -= 1;
let c = 0;
c++;
let d = 0;
d ||= 1;
let e = 1;
e &&= 2;
let f = 1;
f ??= 2;
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
let a = "";
a += "x";
let b = 0;
b -= 1;
let c = 0;
c++;
let d = 0;
d ||= 1;
let e = 1;
e &&= 2;
let f = 1;
f ??= 2;
|