I have something like this
class DailyForecast
{
var temperature;
var humidity;
}
and want an array of these, can that be done? If so how? Ta
var a = new [10];
for (var i = 0; i < a.size(); ++i) {
a= new DailyForecast();
}
[/code]