Skip to content

Instantly share code, notes, and snippets.

@endel
Created November 11, 2014 18:11
Show Gist options
  • Save endel/cee1d82244286db03e06 to your computer and use it in GitHub Desktop.
Save endel/cee1d82244286db03e06 to your computer and use it in GitHub Desktop.
// From: http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement
for (var i=0; i<3; ++i)
{
// object members introduced in this statement
// are scoped to the block following it.
with ({num: i})
{
setTimeout(function() { alert(num); }, 10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment