function a() {
var b = ["b"];
console.log(b);
//console.log(b.slice());
b = b.push("bb");
}
a();
In a "perfect" world you would think that the console.log
would show ["b"]
, but wildly enough it shows ["b", "bb"]
even though "bb" isn't pushed on until afterwards.
If you do console.log(b.slice());
Then you will get the desired result of ["b"]
. Why is that? What's the reason behind this complication? I just want to understand this better so I can better avoid it from happening.
* Note I hit on this same point in a recent question of mine, but this is a much more concise example. @RightSaidFred has led me to this point and has been a huge help so far.
Runnable example on JSFiddle
This is a known problem with console.log
.
Instead of turning the parameter into a string when you call the method, the parameter is stored and turned into a string when it's displayed in the UI. As nothing happens in the UI while the function is running, you will see the state of the object as it is when you exit the function.
I don't think this is a JavaScript wtf; I think it's a console.log wtf. Based on an answer I saw just yesterday, console.log
is likely caching your object. If you replace console.log(b)
with alert(b)
, you'll see b
get displayed, as expected.
Unfortunately convincing console.log to behave in a predictable way is not something I have an answer for.
I'm assuming this has to do with the way that console.log()
works although you're doing something a little funky when you say:
b = b.push("bb");
you should be able to just say
b.push("bb");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With