console.log doesn’t “deep expand” the entries.
Something like a basic loop:
}, function(err, res, body) {
for (var x=0;x<body.follows.length;x++) {
console.log(body.follows[x]);
}
});
Will show the keys/data in the object
console.log doesn’t “deep expand” the entries.
Something like a basic loop:
}, function(err, res, body) {
for (var x=0;x<body.follows.length;x++) {
console.log(body.follows[x]);
}
});
Will show the keys/data in the object