showing results for - "postfix and prefix increment in javascript"
Liah
12 Mar 2017
1++x           : x is now 2
2++x +         : 2 + 
3++x + x       : 2 + 2
4++x + x++     : 2 + 2 and x is now 3
5++x + x++ *   : 2 + 2 *
6++x + x++ * x : 2 + 2 * 3
7