Files
kod-yolculugu-atolyesi/kargo.js
T

8 lines
207 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Kargo hesabı
const KARGO_UCRETI = 49.90; // TL
const KARGO_BEDAVA_SINIRI = 500; // TL üzeri bedava
function kargoUcreti(sepetTutari) {
return sepetTutari >= KARGO_BEDAVA_SINIRI ? 0 : KARGO_UCRETI;
}