Summary

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

env_model.png

Concept

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

CSE - Control, Stash and Evaluate