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