Files
2020-03-11 14:42:32 +01:00

11 lines
201 B
JavaScript

(x + x) / 2;
e[i] - e[i];
(x + y)/(x + y);
window.height - window.height;
x == 23 || x == 23;
x & x;
// this may actually be OK, but it's not good style
pop() && pop();
foo[bar++] && foo[bar++] // OK