Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lesson7 #907

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
.DS_Store
HomeWorkAnswers/.DS_Store
178 changes: 89 additions & 89 deletions ClassWork/Lesson 7/task01.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,101 +10,101 @@
<body>
<script>
// масив із іменами продуктів
// let names = [];
// names[0] = "Папір офісний А4, 80 г/м2, 500 л";
// names[1] = "Біндери для паперу 51 мм";
// names[2] = "Ручка кулькова синя";
let names = [];
names[0] = "Папір офісний А4, 80 г/м2, 500 л";
names[1] = "Біндери для паперу 51 мм";
names[2] = "Ручка кулькова синя";

// // масив із цінами продуктів
// let prices = [];
// prices[0] = 280.25;
// prices[1] = 56;
// prices[2] = 12.50;
//масив із цінами продуктів
let prices = [];
prices[0] = 280.25;
prices[1] = 56;
prices[2] = 12.50;

// // масив з кількістю продуктів, що купуються
// let products = [];
//масив з кількістю продуктів, що купуються
let products = [];

// цикл для отримання кількості продуктів, що купуються
// for (let index = 0; index < names.length; index++) {
// const name = names[index];
// const price = prices[index];

// products[index] = +prompt(`Вкажіть кількість продуктів '${name}', ціна ${price}`, 0);
// }

// // цикл для розрахунку загальної ціни куплених продуктів
// let totalPrice = 0;
// for (let index = 0; index < products.length; index++) {
// totalPrice += prices[index] * products[index];
// }

// alert(`Сума Вашого замовлення ${totalPrice}.`);

// let isFreeShipping = totalPrice > 1000;
// if (isFreeShipping) // іноді в умові використовується лише одна змінна
// {
// alert("Доставка буде безкоштовною.");
// }

let shoppingCart = {
cart:[],

add(product, count) {
this.cart.push({ product: product, count: count });
},

getTotalPrice() {
let sum = 0;
this.cart.forEach(item => sum += item.product.price * item.count);
return sum;
}
};

let shopDatabase = {

products: [
{ name: "Папір офісний А4, 80 г/м2, 500 л", price: 280.25 },
{ name: "Біндери для паперу 51 мм", price: 56 },
{ name: "Ручка кулькова синя", price: 12.50 }],

add: function (name, price) {
this.products.push({ name: name, price: price });
},

remove: function(name) {
let product = this.products.filter(x => x.name == name)[0];
let index = this.indexOf(product);
this.products.splice(index, 1);
}
};

let uiController = {
display: function(message) {
console.log(message);
},

promptNumaber: function(message) {
return +prompt(message)
},

promptByList: function(list, messageTemplateFn) {
return list.map(element => this.promptNumaber(messageTemplateFn(element)))
},

displayList: function(list, messageTemplateFn) {
list.forEach(x => this.display(messageTemplateFn(x)))
}
};

// app
let productCount = uiController.promptByList(shopDatabase.products, x => `${x.name} = ${x.price}грн`);
for (let index = 0; index < names.length; index++) {
const name = names[index];
const price = prices[index];

products[index] = +prompt(`Вкажіть кількість продуктів '${name}', ціна ${price}`, 0);
}

//цикл для розрахунку загальної ціни куплених продуктів
let totalPrice = 0;
for (let index = 0; index < products.length; index++) {
totalPrice += prices[index] * products[index];
}

alert(`Сума Вашого замовлення ${totalPrice}.`);

let isFreeShipping = totalPrice > 1000;
if (isFreeShipping) // іноді в умові використовується лише одна змінна
{
alert("Доставка буде безкоштовною.");
}

// let shoppingCart = {
// cart:[],

// add(product, count) {
// this.cart.push({ product: product, count: count });
// },

// getTotalPrice() {
// let sum = 0;
// this.cart.forEach(item => sum += item.product.price * item.count);
// return sum;
// }
// };

// let shopDatabase = {

// products: [
// { name: "Папір офісний А4, 80 г/м2, 500 л", price: 280.25 },
// { name: "Біндери для паперу 51 мм", price: 56 },
// { name: "Ручка кулькова синя", price: 12.50 }],

// add: function (name, price) {
// this.products.push({ name: name, price: price });
// },

// remove: function(name) {
// let product = this.products.filter(x => x.name == name)[0];
// let index = this.indexOf(product);
// this.products.splice(index, 1);
// }
// };

// let uiController = {
// display: function(message) {
// console.log(message);
// },

// promptNumaber: function(message) {
// return +prompt(message)
// },

// promptByList: function(list, messageTemplateFn) {
// return list.map(element => this.promptNumaber(messageTemplateFn(element)))
// },

// displayList: function(list, messageTemplateFn) {
// list.forEach(x => this.display(messageTemplateFn(x)))
// }
// };

// // app
// let productCount = uiController.promptByList(shopDatabase.products, x => `${x.name} = ${x.price}грн`);

shopDatabase.products.forEach((p, index) => {
shoppingCart.add(p, productCount[index]);
});
// shopDatabase.products.forEach((p, index) => {
// shoppingCart.add(p, productCount[index]);
// });

let total = shoppingCart.getTotalPrice();
console.log(total);
// let total = shoppingCart.getTotalPrice();
// console.log(total);
</script>
</body>

Expand Down
Binary file added HomeWorkAnswers/.DS_Store
Binary file not shown.
19 changes: 19 additions & 0 deletions HomeWorkAnswers/Lesson 2/task2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Display current date</title>
</head>
<body>
<p id="output">New date</p>
<button id="btn">Click me!</button>
<script>
document.querySelector("#btn").onclick = function () {
let output = document.querySelector("#output");
output.innerHTML = new Date();
output.style.color = "red";
};
</script>
</body>
</html>
20 changes: 20 additions & 0 deletions HomeWorkAnswers/Lesson 2/task3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Say hello</title>
</head>
<body>
<p id="output">Текст привітання</p>
<button id="btn">Скажи привіт</button>
<script>
document.querySelector("#btn").onclick = function () {
let name = "Надія";
let output = document.querySelector("#output");
output.innerHTML = `Привіт, ${name}!`;
output.style.color = "blue";
};
</script>
</body>
</html>
23 changes: 23 additions & 0 deletions HomeWorkAnswers/Lesson 3/task1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
let input = prompt("Введіть число:");
number = Number(input);
if (isNaN(number)) {
alert("Введене значення не є числом. Спробуйте ще раз.");
} else {
if (number % 2 === 0) {
alert("Число " + number + " є парним.");
} else {
alert("Число " + number + " є непарним.");
}
}
</script>
</body>
</html>
31 changes: 31 additions & 0 deletions HomeWorkAnswers/Lesson 3/task2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
let currentDate = new Date();
let dayOfWeek = currentDate.getDay();
let dayName;
if (dayOfWeek === 0) {
dayName = "Сьогодні неділя";
} else if (dayOfWeek === 1) {
dayName = "Сьогодні понеділок";
} else if (dayOfWeek === 2) {
dayName = "Сьогодні вівторок";
} else if (dayOfWeek === 3) {
dayName = "Сьогодні середа";
} else if (dayOfWeek === 4) {
dayName = "Сьогодні четвер";
} else if (dayOfWeek === 5) {
dayName = "Сьогодні п'ятниця";
} else if (dayOfWeek === 6) {
dayName = "Сьогодні субота";
}
alert(dayName);
</script>
</body>
</html>
23 changes: 23 additions & 0 deletions HomeWorkAnswers/Lesson 3/task3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
let input = prompt("Введіть рік:");
year = Number(input);
if (isNaN(year) && year >= 0) {
alert("Введене значення не є роком. Спробуйте ще раз.");
} else {
if ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0) {
alert(year + " є високосним роком.");
} else {
alert(year + " не є високосним роком.");
}
}
</script>
</body>
</html>
Loading