environment model

Complete

Concept

Replaces the substitution model, which no longer works, with mutable data

CSE - Control, Stash and Evaluate

Application

Function that modifies a value

js
function f(x) {
	const b = x + 1;
	return b;
}
let a = 1;
a = f(a);

env_model.png