var profile_window_prices = [15300, 19600, 23900, 28200];
var summ = 51000; // Сумма. У Вас не ясно в какой переменной хранится сумма, поэтому я создал свою
mosquito_calc_cost = function() { // Москитная сетка
if (mosquito_calc_value == 0) {return 0;}
if (window_square <= 1) {
for(let window_price of profile_window_prices)
if(summ >= window_price)
summ += 1000;
}
return + (window_square);
};