I have sent value in post request with postman to a nodejs api and now i want to get its values. If i write console.log(req.body); i get
{ 'vendor_medicine_id[]': [ '5b10dc0aa5d60c23a8947e7a', '5b0d4c9abcd16f0558afce85' ],
'quantity[]': [ '15', '17' ],
'name[]': [ 'abc', 'xyz' ],
'contact_number[]': [ '0332695258', '44477889922225' ] }
i want to get this value '5b10dc0aa5d60c23a8947e7a', what should i write
console.log(req.body.???.???);
can you please help