Posts by Caio Grossi • 1 point
2 posts
-
0
votes2
answers165
viewsQ: "setState" problem using React
I have a code in React that uses the hook useState in that way: const [tarefas, setTarefas] = useState([]); It is a task list code, every time I remove a project I have to update the project of each…
-
0
votes0
answers46
viewsQ: Variable "forgets" that has been assigned to the other and function returns Undefined
function pegarBotaoClicado (botoes) { let botaoClicado botoes.forEach(botao => { botao.addEventListener("click", function (e) { botaoClicado = botao }) }) return botaoClicado } In this function I…