Posts by Marcos Paulo • 9 points
3 posts
-
-3
votes2
answers83
viewsQ: Read JSON with JS
I have the following code const dados = [ { "cnpj": "1234567891011", "serie": "1", "numero": "1" }, { "cnpj": "1234567891011", "serie": "1", "numero": "2" }, { "cnpj": "1234567891011", "serie": "1",…
-
0
votes1
answer87
viewsQ: JSON Challenge and JS Separate Items
I have this code, which checks when a number has been skipped const dados = [ { "cnpj": "1234567891011", "serie": "1", "numero": "1" }, { "cnpj": "1234567891011", "serie": "1", "numero": "2" }, {…
javascriptasked Marcos Paulo 9 -
0
votes1
answer56
viewsQ: JSON Challenge with JS
I have a file that JS file, I need to check the numbers that were skipped in sequence, separated by CNPJ, as would be done? [ {"cnpj":"1234567891011","serie":"1","numero":"1"},…