Posts by FilipeFrs • 31 points
2 posts
-
3
votes1
answer504
viewsQ: How to add an event to all elements with the same class?
How do I add an event to all elements in the same class? The code I wrote doesn’t work: var tabela = document.querySelectorAll('.status'); for (var i = 0; i <= tabela.length; i++) {…
javascriptasked FilipeFrs 31 -
-1
votes1
answer28
viewsQ: Problems in the execution of a function
I was trying to create a Python function that would display only even numbers within a range of numbers, until it works and displays numbers, but it also displays 'None' where, I imagine, the odd…