Challenge: Extract Data with Object Destructuring
Task
Create a script demonstrating object destructuring by extracting properties from the provided movie
object and logging them. Specifically, construct a logging message that includes the movie's name, producer, budget, and duration time.
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const movie = {
name: "Going in Style",
producer: "Donald De Line",
duration: 96,
budget: "$25 million",
};
// Destructure properties from the `movie` object
const { ___, ___, ___, ___ } = movie;
// Use the extracted properties
console.log(`Name: ${___}`); // Movie name
console.log(`Producer: ${___}`); // Movie producer
console.log(`Duration: ${___} minutes`); // Movie duration time
console.log(`Budget: ${___}`); // Movie budget
123456789101112131415const movie = { name: "Going in Style", producer: "Donald De Line", duration: 96, budget: "$25 million", }; // Destructure properties from the `movie` object const { ___, ___, ___, ___ } = movie; // Use the extracted properties console.log(`Name: ${___}`); // Movie name console.log(`Producer: ${___}`); // Movie producer console.log(`Duration: ${___} minutes`); // Movie duration time console.log(`Budget: ${___}`); // Movie budget
Expected output:
python91234Name: Going in StyleProducer: Donald De LineDuration: 96 minutesBudget: $25 million
Use object destructuring to extract the
name
,producer
,duration
, andbudget
properties from themovie
object.Construct a sentence using the extracted properties to describe the movie.
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const movie = {
name: "Going in Style",
producer: "Donald De Line",
duration: 96,
budget: "$25 million",
};
// Destructure properties from the `movie` object
const { name, producer, duration, budget } = movie;
// Use the extracted properties
console.log(`Name: ${name}`);
console.log(`Producer: ${producer}`);
console.log(`Duration: ${duration} minutes`);
console.log(`Budget: ${budget}`);
123456789101112131415const movie = { name: "Going in Style", producer: "Donald De Line", duration: 96, budget: "$25 million", }; // Destructure properties from the `movie` object const { name, producer, duration, budget } = movie; // Use the extracted properties console.log(`Name: ${name}`); console.log(`Producer: ${producer}`); console.log(`Duration: ${duration} minutes`); console.log(`Budget: ${budget}`);
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 3. Capitolo 8
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione