-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-05.js
49 lines (46 loc) · 1.58 KB
/
task-05.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"use strict";
let message;
let price;
const country = prompt("Введите ваш город доставки:");
if (country === null) {
alert("Отменено пользователем!");
} else if (country === "") {
alert("Вы ничего не ввели!");
} else {
const deliveryCountry = country.toLowerCase();
switch (deliveryCountry) {
case "китай":
price = 120;
message = `Доставка в ${deliveryCountry[0].toUpperCase()}${deliveryCountry.substr(
1
)} будет стоить ${price} кредитов`;
break;
case "чили":
price = 250;
message = `Доставка в ${deliveryCountry[0].toUpperCase()}${deliveryCountry.substr(
1
)} будет стоить ${price} кредитов`;
break;
case "австралия":
price = 170;
message = `Доставка в ${deliveryCountry[0].toUpperCase()}${deliveryCountry.substr(
1
)} будет стоить ${price} кредитов`;
break;
case "индия":
price = 80;
message = `Доставка в ${deliveryCountry[0].toUpperCase()}${deliveryCountry.substr(
1
)} будет стоить ${price} кредитов`;
break;
case "ямайка":
price = 120;
message = `Доставка в ${deliveryCountry[0].toUpperCase()}${deliveryCountry.substr(
1
)} будет стоить ${price} кредитов`;
break;
default:
message = "В вашей стране доставка не доступна!";
}
alert(message);
}