Skip to content

Instantly share code, notes, and snippets.

@s-panferov
Created March 16, 2015 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s-panferov/8e7344f323195e9a79c8 to your computer and use it in GitHub Desktop.
Save s-panferov/8e7344f323195e9a79c8 to your computer and use it in GitHub Desktop.
var x = 5;
var y = 10;
with({x: 20}) {
var x = 30;
var y = 30;
console.log(x);
console.log(y);
};
console.log(x);
console.log(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment