I'm trying to understand why sometimes, in javascript using the console.log() command, a letter t appears before the praise displaying an object and sometimes not.
Question mays seem silly but I've been unable to find an answer so far.
To be more specific, I've been facing this issue trying to solve some GDPR issues using the tcfapi, but I guess it's a more global thing I've to understand.
So, what's the difference when on two different codes I use following command:
__tcfapi('getTCData',2,function(e){console.log(e)})
And I get in the beginning of the the displayed response either :
t {x:1,y:2,z:3 etc
Or :
{x:1,y:2,z:3 etc
(without the t at the start).
Thanks !