Всем привет! Прошу помочь разобраться в том, что нужно дописать в условии.
Вот что необходимо получить
const drinks = {
tea: 2,
coffe: 4,
bear: 3
};
console.log(toPick(drinks, 'coffe', 'tea')); // { coffe: 4, tea: 2 }
Моя задача.
const drinks = {
tea: 2,
coffe: 4,
bear: 3
};
function toPick(obj, ...arr){
let result = Object.entries(obj).filter(function(item, index, drinks){
console.log("Смотрим массив arr: " + arr);
console.log("Есть элемент " + item[0] + " в массиве");
if(!arr.includes(item[0])){
console.log("Элемента в arr Нет");
console.log("//--//--//--//--//--//--");
// ЗНАЧИТ НУЖНО УДАЛИТЬ ЭЛЕМЕНТ ИЗ Object.entries(obj) как я понимаю.... ЧТО ЗДЕСЬ ПИСАТЬ?
}else{
console.log("Элемент в arr Есть");
console.log("//--//--//--//--//--//--");
}
});
return result;
}
console.log(toPick(drinks, 'coffe', 'tea')); // { coffe: 4, tea: 2 }