Skip to main content
Ben Nadel at CFCamp 2023 (Freising, Germany) with: David Sedeño Fernández
Ben Nadel at CFCamp 2023 (Freising, Germany) with: David Sedeño Fernández ( @david_sedeno )

Extending Window To Create A Dynamic Scope Chain For Method Execution In JavaScript

By on

Last week, I talked about using JavaScript's With keyword in order to create a dynamic scope chain that would form the context of a given function's execution. As a follow-up to that post, I wanted to try and accomplish the same kind of thing without having to rely on the With keyword. To do this, I used an approach that I've never thought of before - I extended the global scope (window object); that is, I used "window" as the prototype for my dynamic scope instance.

One of the fun things about using the with() block in my previous post was that you could use either locally-scoped values or allow the variable references to fall back to the global scope (window). In order to accomplish the same without the with() block, I simply created the "scope" as an extension of the window. In this approach, references can still fall back to the global object; however, this time, the underlying mechanism is the prototype chain, not the scope chain.

To see what I'm talking about, take a look at the following code. Notice that my "scope" variable is being created with Object.create() where "window" is the given prototype.

<!DOCTYPE html>
<html>
<head>
	<title>Extending Window To Create A Dynamic Scope Chain</title>
	<script type="text/javascript">


		// I return a function with a "scope" property that can be
		// used to alter the runtime bindings of the functions.
		var getFoo = (function(){

			// Create the scope for our function. In order to not
			// use the "with" keyword, we want the scope instance
			// to extend the global scope. This will allow us to
			// override scope-based values; or, have them fall
			// through to the global scope thanks to the prototype
			// chain.
			var scope = Object.create( window );

			// Define our method. Notice that we are explicilty
			// scoping our variables to the SCOPE.
			var getFooMethod = function(){

				// Return "foo";
				return( scope.foo );

			};

			// Add scope as a property to the method as well so
			// that it can be access and mutated at runtime.
			getFooMethod.scope = scope;

			// Return the method.
			return( getFooMethod );

		})();


		// -------------------------------------------------- //
		// -------------------------------------------------- //
		// -------------------------------------------------- //
		// -------------------------------------------------- //


		// Store foo in the global name space.
		this.foo = "Foo In Global.";

		// Get closest-scoped foo value.
		console.log( getFoo() );


		// -------------------------------------------------- //
		// -------------------------------------------------- //


		// Store foo directly in the function scope.
		getFoo.scope.foo = "Foo In Scope.";

		// Get closest-scoped foo value.
		console.log( getFoo() );


		// -------------------------------------------------- //
		// -------------------------------------------------- //


		// Update the foo in global scope.
		window.foo = "UPDATED Foo in Global.";

		// Delete the foo from the scope.
		delete( getFoo.scope.foo );

		// Get closest-scoped foo value.
		console.log( getFoo() );


	</script>
</head>
<body>

	<h1>
		Extending Window To Create A Dynamic Scope Chain
	</h1>

</body>
</html>

As you can see, this time, scope is an extension of window. In order to wire this scope into the inner-function, however, we did have to replace unscoped references with explicitly scoped references (ie. "foo" became "scope.foo"). From an external standpoint, however, the logic remained exactly the same.

When we run the above code, we get the following console output:

Foo In Global.
Foo In Scope.
UPDATED Foo in Global.

As you can see, since scope extends window, we can selectively add and remove values anywhere we want in scope's prototype chain. This augmentation of the scope object effectively changes the runtime behavior of the getFoo() method.

As I said in my last post, I don't think any of this code has any practical use; I think the only possible value here is in the exploration of how JavaScript works. If nothing else, I think it was kind of fun to extend the actual window object.

Want to use code from this post? Check out the license.

Reader Comments

1 Comments

This is lovely work, Ben. I'm using a similar thing during an implemention of a stack-based Forthish language in the browser. The justification is this:

> drawGraph

Should use the global stack for binding.

> splitOn standings drawGraph

Not only needs to invoke drawGraph as many times as standings splits down to, but needs to provide a different, filtered, stack to it each time.

Just wanted to let you know that somebody else was crazy enough to find a practical reason to use dynamic scoping in JS :D

c

15,663 Comments

@Chris,

Ha ha, glad to see that someone out there appreciates my strange experimentation with getting JavaScript to do weird stuff :)

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel