pwhite6797 pwhite6797 28-07-2020 Computers and Technology contestada How many times will the while loop that follows be executed? var months = 5; var i = 1; while (i < months) { futureValue = futureValue * (1 + monthlyInterestRate); i = i+1; }