Answer:
Hi!
The answer in Javascript is:
function monthsWithMoreOfThree() {
var Rainfall_mi = '3,4,1,5,2,6,7,9'; //Defined and declared
var num_rainy_months = 0;
var values = Rainfall_mi.split(","); //use split method for Strings. Array is returned
for (var i = 0; i < values.length; i++) { //for each value, compares with 3
if(values[i] > 3) { //In Javascript, you can compare an String value with an int. Can use parseInt(aString) to explicit parse but is not necessary
num_rainy_months++; //If value is greater than 3, adds 1 to num_rainy_months
}
}
}