I'm looking at this code I am not able to get the value of 'start' in the hash.
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(),
event: 'gtm.js'
});
I thought I could do:
w[l].start
or
w[l]['start']
But I get undefined errors.
w is passed in as a parameter, and it is a window object.
gtm.startw[l]is an arrayw[l].gtm.start