Posts by Esron Silva • 43 points
3 posts
-
1
votes3
answers71
viewsA: Because when I click the button, you don’t calculate?
All that was missing was to convert the input values to numeric. Note that the input is as type "text", even if you use the type "number" Javascript will still read as text. <!DOCTYPE html>…
javascriptanswered Esron Silva 43 -
0
votes1
answer53
viewsA: 404 Not Found. Resource or location?
According to the Wikipedia, Error 404 is an HTTP response code that indicates that the client was able to communicate with the server, but either the server could not find what was requested, or was…
asp.net-web-apianswered Esron Silva 43 -
3
votes1
answer89
viewsQ: How to delete all Mongodb Collections in Laravel
A good practice in TDD is to keep the database clean between tests. For this, Laravel uses the Trait RefreshDatabase. However, this still doesn’t work for the Mongodb database. My idea is to delete…