Показать сообщение отдельно
  #1 (permalink)  
Старый 02.10.2020, 19:20
Аспирант
Отправить личное сообщение для riaron Посмотреть профиль Найти все сообщения от riaron
 
Регистрация: 16.08.2020
Сообщений: 53

allprice инкремент не работает, возвращяет значение последнео операнда
for(var i=0;i<results.length;i++) {
                // Create the object to save the data.
                b=results[i].price-results[i].price*results[i].sale/100;

                a=b*results[i].quantity;
                var smart = {
                    'id': results[i].id,
                    'prod': results[i].prod,
                    'name': results[i].name,
                    'photo': results[i].photo,
                    'sale': results[i].sale,
                    'price': results[i].price,
                    'tsale': b,
                    'vsego':a,
                    'quantity': results[i].quantity,
                };
                allprice=+ smart.vsego;
                smartphone.push(smart);
            }
Ответить с цитированием