Posts by Tramonta • 25 points
3 posts
-
-2
votes1
answer22
viewsA: error while running npx React-Native run-android command
The error message says that you are probably not running this command from within the root of your active React file. Just in case, do the following procedure: Delete the node_modules folder and the…
-
1
votes1
answer34
viewsA: Array size within an object
Your question is poorly worded, but I think I’ve been able to decipher it. You want to calculate the total by adding up the taxes and subtracting the expenses, correct? For this, the reduce method…
-
1
votes2
answers84
viewsA: Strange return even with Async/Await
What you’re logging in is the prototype of a Premomise. When you prefix it async in a function, it must return a precedent. The return of this function will then be the value by which the Precedent…