The json object is
var data = [{\"Parent\":1,\"Child\":[4,5,6]},{\"Parent\":2},{\"Parent\":3}]
How can I use underscore.js chain/map/pluck
Here's a shorter solution:
flat = _.flatten(_.map(data, _.values))