Jump to content

Помогите исправить ошибки которые в консоли, чтобы скрипт заработал.


misinkevych.alina
 Share

Recommended Posts

'use strict';
const inventory = {
items: ['Монорельса', 'Фильтр'],
add(itemName) {
this.items.push(itemName);
},
remove(itemName) {
this.items = this.items.filter(item => item !== itemName);
},
};
 
const invokeInventoryOperation = function(itemName, inventoryAction) {
console.log(`Invoking ${inventoryAction.name} opeartion on ${itemName}`);
inventoryAction(itemName);
};
 
invokeInventoryOperation('Аптечка', inventory.add);
// Invoking add opeartion on Аптечка
 
console.log(inventory.items); // ['Монорельса', 'Фильтр', 'Аптечка']
 
invokeInventoryOperation('Фильтр', inventory.remove);
// Invoking remove opeartion on Фильтр
 
console.log(inventory.items); // ['Монорельса', 'Аптечка']
Link to comment
Share on other sites

зачем вам 'use strict';
что такое this откуда в нем items?
предполагаю что вы пытаетесь добавить/удалить из const inventory
ваш код сплошная ошибка
подумайте что именно вы хотите сделать

Link to comment
Share on other sites

7 часов назад, Switch74 сказал:

зачем вам 'use strict';
что такое this откуда в нем items?
предполагаю что вы пытаетесь добавить/удалить из const inventory
ваш код сплошная ошибка
подумайте что именно вы хотите сделать

Я всегда пишу в строгом режиме. на счет this то его его действительно нужно делать в самом вызове. В этой задаче мне нужно получить конечный результат 

 ['Монорельса', 'Фильтр', 'Аптечка']

 

['Монорельса', 'Аптечка']
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy