Skip to content
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
4 changes: 3 additions & 1 deletion Sprint-1/destructuring/exercise-1/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ 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}.`
);
}

introduceYourself(personOne);
// What is the syntax to destructure the object `personOne` in exercise.js?
//- Update the parameter of the function `introduceYourself` to use destructuring on the object that gets passed in.
22 changes: 22 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,25 @@ let hogwarts = [
occupation: "Teacher",
},
];
//## Task 1

//- In `exercise.js` write a program that will take the `hogwarts` array as input and display the names of the people who belong to the Gryffindor house.
//- Use object destructuring to extract the values you need out of each element in the array.

// Task 1
for (const { firstName, house } of hogwarts) {
if (house === "Gryffindor") {
console.log(firstName);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you manage to compare the output with the one described in readme.md?

}
}

// Task 2
for (const { firstName, occupation, pet } of hogwarts) {
if (occupation === "Teacher" && pet) {
console.log(firstName);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same question as above.

}
}
//## Task 2

//- In `exercise.js` write a program that will take the `hogwarts` array as input and display the names of teachers who have pets.
//- Use object destructuring to extract the values you need out of each element in the array.
13 changes: 13 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,16 @@ let order = [
{ itemName: "Hot Coffee", quantity: 2, unitPricePence: 100 },
{ itemName: "Hash Brown", quantity: 4, unitPricePence: 40 },
];
let totalCost = 0;

for (const { itemName, quantity, unitPricePence } of order) {
const itemTotal = quantity * unitPricePence;

console.log(
`${quantity} ${itemName.padEnd(20)}${(itemTotal / 100).toFixed(2)}`

@webmonch webmonch Sep 14, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think this can be made more robust in terms of formatting structure?
Also did you manage to verify if output matches the one defined in readme for this exercise?

);

totalCost += itemTotal;
}

console.log(`Total: ${(totalCost / 100).toFixed(2)}`);
Loading