When a function is invoked, a new lexical environment is created for that invocation. That lexical environment contains an environment record, which in turn holds the local named bindings which exist in that environment. So, for instance:
(function () {
var x = 123;
// other code
}());
In the above function invocation, there will exist a binding with the name "x" and the value 123, in the function's lexical environment.
Now, if we wanted to change the value of that binding, we could:
set the identifier
xas the left-hand side of one of the assignment operators:x = 456; // the value of the "x" binding has changed to 456set the identifier
xas the operand of a prefix/suffix increment/decrement operator:x++; // the value of the "x" binding has changed to 124
My question: Are those the only two methods to change the value of the "x" binding?
x++;is just a syntactic shortcut forx = x + 1;so you really have only one assignment type described here. – dystroy Sep 26 '12 at 13:45++/--, and=are two different operators which both happen to invoke the internalPutValuemethod which in turn changes the value of the binding. Just because one operator can be expressed via a combination of other operators, does not make it less significant. Note that the=operator does not own thePutValueinternal method. It is just invoking it internally. Just like the++is. Both operators are equal here, and should both be mentioned. – Šime Vidas Sep 26 '12 at 14:08