Skip to content

Instantly share code, notes, and snippets.

@jdeerhake
Last active August 29, 2015 14:01
Show Gist options
  • Save jdeerhake/a94a8558cdf7b97f06bc to your computer and use it in GitHub Desktop.
Save jdeerhake/a94a8558cdf7b97f06bc to your computer and use it in GitHub Desktop.
var foo = {};
with(foo) {
var a = 1;
b = 2;
}
foo.a //undefined
foo.b //undefined
window.a //1
window.b //2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment