Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
stisch48148y@xalez WHY WOULD YOU DO THIS TO US DON'T GIVE THEM THIS IDEA
Also ++ing you which, given your comment, is hilariously recursive. -
xalez19378y@stisch I stopped myself from seeing how incrementing both variables and adding will look like (x +++++ y etc.) .. actually now I see why it's a good idea to give x++ and ++x precedence over addition 🤓 otherwise (x++ + y) != (x + ++y) .. thanks for the ++ anyways (regardless if it was a ++ or a++ 😏)!
-
xalez19378y@Netux most welcome, I had never considered adding a space before reading @AlgoRythm's question, so had to find good reason lest I stare into the abyss (which would obviously lead to it staring back at me 😰)
I'm always a little torn between writing
variable++;
Or
variable ++;
undefined