Posts by Marques Souza • 7 points
3 posts
-
0
votes2
answers61
viewsA: What is the definition of delete in Javascript?
Take a look at this example: var person = { name: "Harry", age: 16, gender: "Male" }; // Deleta a propriedade completamente delete person.age; alert(person.age); // Saida: undefined…
-
1
votes1
answer28
viewsA: Consult two days in php
If understood correctly, you could do the following, in php code put $evento = date("d/m/Y") to get the same system date and the crontab your server puts to run on days 15 and 30 like this: 0 0 15 *…
phpanswered Marques Souza 7 -
-2
votes1
answer388
viewsQ: I need help to configure Axios client according to Wi-FI/3G/4G network
I’m developing an app in React-Native using expo, and the app works well on the Wi-Fi from here, but it should also work outside of here, and we have a firewall port that points to API nodejs by our…