Posts by Maicon Godinho • 1 point
2 posts
-
0
votes2
answers397
viewsA: bodyParser is not set error in Node.js
You need to install the body-parser and require it in your file. npm install body-parser var bodyParser = require('body-parser') Documentation if necessary:…
-
0
votes3
answers1235
viewsA: Group an array of objects
Opa, I managed to get your expected result using only pure Javascript. Follows code below: var arrBase = [ { 12312312: { first_name: "David", id_question: 0, acertou: 1 }, 23423423: { first_name:…