Skip to content

Instantly share code, notes, and snippets.

@JosephLenton
Created December 3, 2012 08:14
Show Gist options
  • Save JosephLenton/4193591 to your computer and use it in GitHub Desktop.
Save JosephLenton/4193591 to your computer and use it in GitHub Desktop.
execution problem
<!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