i have following json data.from this i need to extract os value. How it can be done using node.js
result = data.toString();
console.log(result) prints following
[ { _id: '52849a7b8dd61980d1b49b87',
id: '70',
mode: 'daily',
os: 'VM-WIN7-64',
server: '172.16.2.120' } ]
i tried console.log(result.os); prints undefined!
How can i get os value