847 B
847 B
title, localeTitle
title | localeTitle |
---|---|
Use the delete Keyword to Remove Object Properties | Использование ключа удаления для удаления свойств объекта |
Использование ключа удаления для удаления свойств объекта
Developer.mozilla.org предоставляет исчерпывающее руководство по оператору удаления.
Решение:
let foods = {
apples: 25,
oranges: 32,
plums: 28,
bananas: 13,
grapes: 35,
strawberries: 27
};
// change code below this line
delete foods.oranges;
delete foods.plums;
delete foods.strawberries;
// change code above this line
console.log(foods);