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

West Midlands | Samira Hekmati | Module-Data-Flows | Sprint-1 | Destructuring #130

Open
wants to merge 3 commits into
base: main
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
2 changes: 1 addition & 1 deletion Sprint-1/destructuring/exercise-1/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const personOne = {

// Update the parameter to this function to make it work.
// Don't change anything else.
function introduceYourself(___________________________) {
function introduceYourself(name,age,favouriteFood) {
console.log(
`Hello, my name is ${name}. I am ${age} years old and my favourite food is ${favouriteFood}.`
);
Expand Down
21 changes: 21 additions & 0 deletions Sprint-1/destructuring/exercise-2/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,24 @@ let hogwarts = [
occupation: "Teacher",
},
];

//Task 1
function GryffindorHouse(arr){
for(const {firstName, lastName, house} of arr){
if(house == "Gryffindor" ){
console.log(`${firstName} ${lastName}`)
}
}
}
GryffindorHouse(hogwarts);

//Task 2
function teachersWithPet(arr) {
for (const { firstName, lastName, pet, occupation } of arr) {
if (pet != null && occupation === "Teacher") {
console.log(`${firstName} ${lastName}`);
}
}
}

teachersWithPet(hogwarts);
19 changes: 19 additions & 0 deletions Sprint-1/destructuring/exercise-3/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,22 @@ let order = [
{ itemName: "Hot Coffee", quantity: 2, unitPricePence: 100 },
{ itemName: "Hash Brown", quantity: 4, unitPricePence: 40 },
];


function receipt (arr){
console.log("QTY ITEM TOTAL");
let grandTotal = 0;
for (const {itemName, quantity, unitPricePence} of arr){
let total = (quantity * unitPricePence) / 100;
grandTotal += total;
// Format the output to align columns
let qtystr = quantity.toString().padEnd(8);
let item = itemName.padEnd(20);
let totalStr =total.toFixed(2).padEnd(5);
console.log(qtystr,item, totalStr)

}
console.log("Total:",grandTotal.toFixed(2));
}

receipt(order);