DEV Community

Discussion on: Demystifying the Long Arrow "Operator"

Collapse
 
helpermethod profile image
Oliver Weiler

Never combine post/pre increment/decrement with other operators. It makes code hard to understand and can lead to nasty bugs. That's why many langs like Python don't have them at all.