Preview:
var x=5;
var y=x++;
console.log("x is"+x+"**y is"+y);//x is6**y is5
var z= (x++-y--);
console.log("x is"+x+"**y is"+y+"**z is"+z);//x is7**y is4**z is1
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter