I am trying to pass the array with the help of query string but when i am fetching it using nodejs it act as a string.
my query string is like -
'/home?page='+value;
where value is [{name : 'a'},{name :'b'},{name : 'c'}]
but the problem is when i send it in node js and apply
console.log(req.query.page[0].name)
output is [object object]
but i want the output a
Please help me in this problem