Skip to content

Instantly share code, notes, and snippets.

@NV
Created September 22, 2010 13:45
Show Gist options
  • Save NV/591691 to your computer and use it in GitHub Desktop.
Save NV/591691 to your computer and use it in GitHub Desktop.
Is that Magic exists?
var O = {};
// Magic begins
var a = 1;
// Magic ends
a // undefined
O.a // 1
var b = 2;
// Magic begins
var b = 3;
// Magic ends
b // 2
O.b // 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment