Files
kod-yolculugu-atolyesi/sepet.js
T

16 lines
387 B
JavaScript

// Sepet — ürünleri toplar
const sepet = [];
const HEDIYE_CEKI = 100; // TL — hediye çeki bakiyesi
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 sonFiyat(sepetToplami()) - HEDIYE_CEKI; // çekiyi düş
}