I've been reading on topics of scope & context and found this article. The explanations are mostly distinct combined with what I've read on other resources, however there's one line that's confusing me.
Fundamentally, scope is function-based while context is object-based. In other words, scope pertains to the variable access of a function when it is invoked and is unique to each invocation.
What does he mean here? How can a scope be unique, since it's static (lexical)? Isn't it the execution context that's dynamic, being created on each new invocation, while function scope remains the same?