Skip to content

Instantly share code, notes, and snippets.

@matthewrobb
Created May 18, 2014 18:23
Show Gist options
  • Save matthewrobb/30f9c82abf90958d398c to your computer and use it in GitHub Desktop.
Save matthewrobb/30f9c82abf90958d398c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
</body>
</html>
(function() {
with(this) {
(function() {
"use strict";
foo = "boo";
console.log(this.foo);
}).call(this);
}
}).call({ foo : "bar" });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment