mikeymo
mikeymo

Reputation: 3285

What is the best way to query json objects/arrays in javascript?

Are there specific js libraries or techniques for querying json objects in the browser - i.e. 'get all People where person.name = "Joe"'. Something similar to what linq does in .NET.....

Upvotes: 1

Views: 4408

Answers (2)

mikerobi
mikerobi

Reputation: 20878

There are several options:

Upvotes: 1

Darin Dimitrov
Darin Dimitrov

Reputation: 1038720

You may take a look at LINQ to Javascript. There are also many others, just pick one that fits your needs.

Upvotes: 3

Related Questions