matthewrobb
5/18/2014 - 6:23 PM

jsbin.wogob.html

<!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" });