const removerTarefas= (somenteComplentas) => {
const seletor = ".app__section-task-list-item"
if(somenteComplentas){
seletor = ".app__section-task-list-item-complete"
}
document.querySelectorAll(seletor).forEach(elemento => {
elemento.remove()
})
tarefas = somenteComplentas ? tarefas.filter(tarefa => !tarefa.completa) : []
atualizarTarefas()
}
btnRemover.onclick = () => removerTarefas(true)
btnRemoverAll.onclick = () => removerTarefas(false)