FORECASTING. code example
Example: forecast
var weather;
weather = "bad";
if(weather.equals("bad")) {
noPicnic(function() {
return ":(";
})
} else {
Picnic(function() {
return ":)";
})
}
var weather;
weather = "bad";
if(weather.equals("bad")) {
noPicnic(function() {
return ":(";
})
} else {
Picnic(function() {
return ":)";
})
}