Using several "--" or "++" unary operators in the same arithmetic expression can quickly make the expression unreadable.
var j:int = foo++ - --bar;
bar--; var j:int = foo++ - bar;