I've a kind of weird question. I have set up google publishing tag on my website. The key values that are saved in google publishing tag can be accessed directly in the console by typing in this:
googletags.pubads()
Now the above is an object containing different objects , methods etc. However , from time to time the location of a particular object inside googletag.pubads() changes. If the object or array I am looking for inside google.pubads() is in i'th position today , then after like a few months the location of the same object is "j" . Why would this be?
This is how I access it in console:
var s = googletag.pubads();
var q = s.i // Because the current object is in "i" . However it changes after a few months. or days.
I am using the value of this object in many different places & if the position changes , then I have to update my code with the new object location everytime it changes. Why would this happen?