Odd Chrome Behaviour
I'm experiencing a situation where console.log()
'ing an array displays all the values correctly, but then expanding that array in chromes view gives completely different values.
See the picture for the behavior.
Odd Chrome Behaviour
I'm experiencing a situation where console.log()
'ing an array displays all the values correctly, but then expanding that array in chromes view gives completely different values.
See the picture for the behavior.
It was an object reference issue. I made a copy of the object I was parsing and it fixed the issue. I guess the values inside the array were actually just referencing to something that's changing elsewhere in my code.