Possible Duplicate:
what’s the javascript “var _gaq = _gaq || []; ” for ?
In the asynchronous example of Google Analytic's Ecommerce tracking code, the declaration of the array is:
var _gaq = _gaq || [];
I'm trying to understand what they are doing here. Is this a true OR
statement? Is this because of the async treatment of the script tag?
Thanks!
http://code.google.com/apis/analytics/docs/tracking/gaTrackingEcommerce.html#Example