Can an array have two separate values through the use of "or"?
I was wondering if it's possible for an array to have two different values. In other words, something such as this:
var array = new Array(obj1, obj2, obj3) || (obj4, obj5, obj6);
I know the above code isn't correct, but is it possible for an array to have two different set of values?