Okay, here we go!

First example is really tiny. Well, it’s still weird.

let a = 0;

a -=- 1; // a = 1

Explanation

…And that’s it. We increment our variable with subtraction (yay). There is no tricky tricks, just something like a = a - (-1). As title says, simple math!