Skip to content

Instantly share code, notes, and snippets.

@tolmasky
Created January 25, 2010 01:21
Show Gist options
  • Save tolmasky/285558 to your computer and use it in GitHub Desktop.
Save tolmasky/285558 to your computer and use it in GitHub Desktop.
function method()
{
alert(x);
}
window.setTimeout(function()
{
var x = 7;
method();
}, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment