I am trying to put the contents of an array into a variable to then use it in a if statement. My goal is to find the max number of a array and display it with the corresponding “month”. I was able to achieve the max number but what should i = maxMonthIndex to so the if statement will work correctly?
function displayHighestSalary() {
console.log("Inside displayArrayContents function");
var maxFinal;
var max = monthlySales[0];
var maxMonth;
var maxMonthIndex;
console.log("monthlySales.length = " + monthlySales.length);
//Loop through array and build display string
for (var i = 0; i < monthlySales.length; i++)
{
if (monthlySales[i] > max) {
max = monthlySales[i];
maxMonthIndex = **??????**;
}
}
console.log("max = " + max)
if (maxMonthIndex = monthlySales[0]) {
maxMonth = "january";
}
else if (maxMonthIndex = monthlySales[1]) {
maxMonth = "February";
}
else if (maxMonthIndex = monthlySales[2]) {
maxMonth = "March";
}
else if (maxMonthIndex = monthlySales[3]) {
maxMonth = "April";
}
else if (maxMonthIndex = monthlySales[4]) {
maxMonth = "May";
}
else if (maxMonthIndex = monthlySales[5]) {
maxMonth = "June";
}
else if (maxMonthIndex = monthlySales[6]) {
maxMonth = "July";
}
else if (maxMonthIndex = monthlySales[7]) {
maxMonth = "August";
}
else if (maxMonthIndex = monthlySales[8]) {
maxMonth = "September";
}
else if (maxMonthIndex = monthlySales[9]) {
maxMonth = "October";
}
else if (maxMonthIndex = monthlySales[10]) {
maxMonth = "November";
}
else if (maxMonthIndex = monthlySales[11]) {
maxMonth = "December";
}
maxFinal = addCommas(max);
//Display results
document.getElementById('divDisplayHighest').innerHTML = "$" + maxFinal + " " + maxMonth;
}
Set
maxMonthIndextoi:Change assignment statements to
===and compare to the index (number) not the max value:Even better: