// Sepet — ürünleri toplar const sepet = []; function sepeteEkle(urun, fiyat) { sepet.push({ urun: urun, fiyat: fiyat }); } function sepetToplami() { return sepet.reduce(function (t, u) { return t + u.fiyat; }, 0); } function sepetIndirimliToplam() { return indirimliFiyat(sepetToplami()); }