Example Resulting value of x Resulting value of y
var x = 8;
var y = --x;
7 7
var x = 8;
var y = x--;
7 8