Posts by Beto Garcia • 71 points
2 posts
-
4
votes1
answer30
viewsQ: Comparison between two objects
Assuming I have the following objects: const dataBody = { name:'luiz', email:'[email protected]', cpf:'12345678910' } const dataDb = { name:'luiz', email:'[email protected]', cpf:'12345678910' } How do I…
javascriptasked Beto Garcia 71 -
1
votes2
answers227
viewsQ: Extract data from JSON as an example
I have the following object JSON which is returned after database query: { data: { act: "3 ", searchType: "2", searchData: "33014421" }, convicts: { count: 2, rows: [ { idConvict: 7 }, { idConvict:…