Posts by Thiago Jedi • 161 points
2 posts
-
1
votes1
answer576
viewsA: How to search for the longest date in Mongodb along with other parameters?
You can use mongodb’s Aggregation framework to do this. Using Mongoosis, it would look something like this: // Troque essa linha pelo seu mapeamento var entregaModel = mongoose.model("entrega",…
-
2
votes2
answers2343
viewsA: How to convert a javascript file to ts format?
First of all, every Javascript code is a valid Typescript code, so there is no need for reverse transposal from the compiler’s point of view. Regarding the editing tools and Ides, there is no need…