Created
December 3, 2012 08:14
-
-
Save JosephLenton/4193591 to your computer and use it in GitHub Desktop.
execution problem
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
<!DOCTYPE html> | |
<script> | |
function rand() { | |
return (Math.random()*1000) | 0; | |
} | |
function foo() { | |
console.log( "execution " + execution ); | |
} | |
</script> | |
<script> | |
var execution = 1; | |
setTimeout( function() { | |
console.log( 'expect ' + 1 ); | |
foo() | |
}, rand() ); | |
</script> | |
<script> | |
var execution = 2; | |
setTimeout( function() { | |
console.log( 'expect ' + 2 ); | |
foo() | |
}, rand() ); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment