I would like to define the following in Javascript:
var tileXml = new Array();
var tileTextAttribute = new Array();
var tileImageAttribute = new Array();
var tileNotification = new Array();
As:
var tileXml,tileTextAttribute,tileImageAttribute,tileNotification = new Array();
I should be right. For some reason it fails in the second case, why?
tileNotificationwill be an array, the other ones will be undefined variables.