underscore double plucks
by abenrob
JavaScript
var someData = {"features": [{"type":"Feature","properties":{"ID":22}},{"type":"Feature","properties":{"ID":33}}]};
console.log(
_(_(someData.features).pluck('properties')).pluck('ID').indexOf(33)
)