In angular for loop is printing all values in console, but printing only the last value on the web page. I want to show all values on the web page.
export class RentCalculatorComponent {
constructor() { }
rent: any = '';
increase: any = '';
months: any = '';
calculate() {
for (let i = 1; i <= this.months; i++) {
this.rent = this.rent + this.rent * this.increase / 100
console.log(this.rent);
}
}