Posts by PdroLucas • 3 points
5 posts
-
0
votes1
answer32
viewsQ: Remove list item
How do I remove the item from the list that is generated after the event that creates it? I am trying to place an event that has the function of removing the item, but when I run the code it turns…
-
-2
votes1
answer28
viewsQ: Error after calling Event
After calling the Event click on the button, the calculation appears with no result and the HTML that entered through the JS disappears from the screen right after the call. PS: Ignore developing…
-
-2
votes1
answer27
views -
0
votes1
answer33
viewsQ: Average calculation returning Undefined when no Arguments is passed
(function(){ console.log(media()) function media() { let total = 0 let qtd = arguments.length for(i = 0; i < qtd; i++) { if(typeof arguments[i] !== "number") { return "Digite valores Validos" }…
-
0
votes1
answer37
viewsQ: How can I make this calculation be performed in all the Objects of the array and return me the value multiplied by the length of the table?
I need the calculation to be performed in all Bjects before returning the value to me by the length of the table (OBS: it’s just a challenge I’m participating, I’m not using database). function…