I have a JSON file which contains data like the following:
{\"posts\": [ { \"title\":\"1\", \"url\":\"n1.png\" }, { \"title\":\"2\", \"url\":\"n2.p
There is another solution to this: using jLinq.js (documentation), which has even more features. In this case, you can get the solution by using the following code:
var selectedPosts = jLinq.from(posts) .betweenEquals("title",4,8) .select();