Posts by Marcelo Ivan • 45 points
5 posts
-
0
votes1
answer203
viewsQ: How to redirect to an external url using React useEffect?
I am trying to redirect to an external url ,using the vaiparala function by passing a parameter that I pick up from the click, the path arrives at the function correctly but the redirect does not is…
-
1
votes2
answers63
viewsQ: Would you like to know how to build a function that counts repeated numeric values in an array?
How to count the most repeated value ?. I tried it in this format and it doesn’t work let array = [2,3,4,5,6,7,8,9,2,2,3,2,1,3] let contador = 0 for(i=0 ;i <= array.length ; i++){ if(array[i] ==…
javascriptasked Marcelo Ivan 45 -
0
votes2
answers77
viewsQ: What can be done to improve my counting function?
I have this program that simulates games of a mega "lottery" style. It works normal, but I would like to improve my 'count' function to present all the repeated values of each number within each…
pythonasked Marcelo Ivan 45 -
-2
votes1
answer162
viewsQ: fill table with javascript and ajax!
I’m trying to fill a table using javascript with the data coming from an ajax model. of that fortress : $("#md").on("click", function() { if (FA.checked) { $("div.hidden").css('display', 'block');…
-
-1
votes1
answer213
viewsQ: Flask ajax html communication
I would like a help with a Python application using the Flask framework, I want to send data to html ,and then show this data in a table. the function of flask : @myapp.route('/treino',…