I found that implementation on a google analytics script in one of my project pages.
I was wondering what is the purpose of first line : "myArray || [] "" ?
Why to use OR operation on an array with another empty array?
var myArray = myArray || [];
myArray.push(['_setAccount', 'UA-39103830-1']);
myArray.push(['_trackPageview']);