Posts by Rogerio Fersan • 5 points
3 posts
-
-5
votes4
answers829
viewsA: Best approach is to filter data in the database or application?
I’m sorry I disagree with your friend Maniero as to "Let the database work for you...". In my view, decoupling the application of the technology adopted in the database is always the best strategy,…
-
0
votes2
answers122
viewsA: Add two array values and transform into a single Javascript variable
Considerations: 1) At the end of each 'operation', you must 'update' the display element case 'sum': result += num1[c] + num2[c]; tela.innerHTML = result; break; Otherwise, your 'Memory' (result)…
javascriptanswered Rogerio Fersan 5 -
-3
votes1
answer62
viewsA: how to identify a collision between a moving random div and one that I’m moving
If I understand your question correctly: you are trying to perform a motion animation with elements of the class 'Bounce', but you want a kind of warning if a 'circular object' (.circleBase {…