Skip to content

Instantly share code, notes, and snippets.

@livejamie
Created July 19, 2013 22:20
Show Gist options
  • Save livejamie/6042759 to your computer and use it in GitHub Desktop.
Save livejamie/6042759 to your computer and use it in GitHub Desktop.
A CodePen by Jamie Martin.
<button onclick="test()">Test</button>
function test()
{
var i = 5;
var j = 5;
alert(i++);
alert(++j);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment