First Example:
In the following example: http://jsfiddle.net/maniator/ScTAW/4/
I have this js:
var storage = (function () {
var store = [];
return {
"add": function (item) {
store.push(item);
},
"get": function () {
return store;
}
};
}());
storage.add('hi there')
console.log(storage, storage.get(), storage.add('hi there #2'));
And here is what gets printed to the console:
Object ["hi there", "hi there #2"] undefined
One would think that the console should only say:
Object ["hi there"] undefined
becase the second push did not happen until after the value was logged, therefore it should not be displayed.
Second Example:
In the following example: http://jsfiddle.net/maniator/ScTAW/5/
I am using the same storage variable but I log like so:
storage.add('hi there')
console.log(storage, storage.get(), (function() {
storage.add('hi there #2');
console.log('TESTING');
})());
What gets printed to the console is:
TESTING
Object ["hi there", "hi there #2"] undefined
hmmmm well that is odd now isnt it? One could expect to see:
Object ["hi there"] undefined
TESTING
Why is this happening? What is going on behind the scenes of the console logging mechanism?
console.log("The %s jumped over %d tall buildings", "dog", 5)it doesn't matter what order they're in. You seem to think that because semantically the format depends on the parameters (or the other way around?), the order they're read in matters. It doesn't though, they're all just independent strings getting passed to a function. – Blindy Aug 18 '11 at 18:08i++ + ++ior the OP's example, where you're both reading and writing to the same location in memory in the same instruction. – Blindy Aug 18 '11 at 18:12