Is this code correct?

Tell us what’s happening:

Your code so far


let foods = {
apples: 25,
oranges: 32,
plums: 28,
bananas: 13,
grapes: 35,
strawberries: 27
};

// Only change code below this line
delete (foods.oranges, foods.plums, foods.strawberries);
// Only change code above this line

console.log(foods);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 Edg/83.0.478.56.

Challenge: Use the delete Keyword to Remove Object Properties

Link to the challenge:

you should repeat delete three tims for removing oranges , plums , and strawberrie. in three different lines .

1 Like