ASTRO
checklist
Performance
Flexibility and Integrations
Developer Experience
Community & Ecosystem
script.js
const tasks = [
{ id: 1, description: 'Buy Grocery' },
{ id: 2, description: 'Create a blog post'},
{ id: 3, description: 'Make a thumbnail' },
{ id: 4, description: 'Share on Twitter' }
];
const filteredTasks = tasks.filter(task => {
return task.id != 3;
})
console.log(filteredTasks);
@yourchannel