generated from Digitalni-akademie-Web-Jaro-2020-Praha/Ukol-havaj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
havaj.js
21 lines (19 loc) · 925 Bytes
/
havaj.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
let osoba1 = {
jmeno: 'Alena',
uspory: 43000
};
let osoba2 = {
jmeno: 'Karolína',
uspory: 68000
};
const holidaysTogether = (osoba1, osoba2) => {
let savings = osoba1.uspory + osoba2.uspory;
if (savings >= 100000) {
console.log('Můžete vyrazit')
} else if (osoba1.uspory >= 50000 && osoba2.uspory <= 50000 && osoba1.uspory + osoba2.uspory >= 100000) {
console.log(`Karolína bude muset doplatit ${50000 - osoba2.uspory}`)
} else if (osoba1.uspory <= 50000 && osoba2.uspory >= 50000 && osoba1.uspory + osoba2.uspory >= 100000) {
console.log(`Alena bude muset doplatit ${50000 - osoba1.uspory}`)
} else if (osoba1.uspory <= 50000 && osoba2.uspory <= 50000) { console.log(`Ještě vám chybí ${100000 - savings}`) + console.log(`${osoba1.jmeno} bude muset doplatit ${50000 - osoba1.uspory} a ${osoba2.jmeno} bude muset doplatit ${50000 - osoba2.uspory}`) }
};
holidaysTogether(osoba1, osoba2)