Searching for items in a JSON array Using Node (preferably without iteration)

Viewed 47804

Currently I get back a JSON response like this...

{items:[
  {itemId:1,isRight:0},
  {itemId:2,isRight:1},
  {itemId:3,isRight:0}
]}

I want to perform something like this (pseudo code)

var arrayFound = obj.items.Find({isRight:1})

This would then return

[{itemId:2,isRight:1}]

I know I can do this with a for each loop, however, I am trying to avoid this. This is currently server side on a Node.JS app.

6 Answers
Related