Posts by Jorge Santos • 26 points
3 posts
-
0
votes1
answer1612
viewsA: Vscode extension for showing errors
friend, try to use this one has been very useful to me, in a few moments maybe you need to run the project(will show the error and stop the execution) for it to show the "red risk". Hope I helped,…
-
0
votes4
answers2214
viewsA: Bring a Max(Date) with LINQ
here I take the last registration date of a watch, using the OrderBy to list from the smallest to the largest and catch the largest record date with LastOrDefautl: var ultimo_relogio=…
-
1
votes4
answers580
viewsA: Return Asyncstorage value in a constant
use a function async and put await prior to Asyncstorage: async function pegarValor(){ const myuser = await AsyncStorage.getItem('user') console.log(myuser) } pegarValor();…