Created
August 7, 2022 18:14
-
-
Save bogoslavskiy/8ee9555b07ad7f978645571abf15e751 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tasks = [ | |
{ | |
description: 'Test', | |
completed: false | |
}, | |
{ | |
description: 'Test2', | |
completed: true | |
} | |
]; | |
const activeTasks = tasks.filter((item) => { | |
console.log('Внутри коллбека филтер'); | |
console.log(item); | |
return item.completed == false; | |
}); | |
console.log('Все активные задачи:'); | |
console.log(activeTasks); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment