Created
July 19, 2013 22:20
-
-
Save livejamie/6042759 to your computer and use it in GitHub Desktop.
A CodePen by Jamie Martin.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button onclick="test()">Test</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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