I have JSON object in which data gets filter on Selecting elements from form. My form has following elements:
Min Age - Max Age and  Gender - male(1) & female(2)
Following is my JSON object:
[
   {
      "id":"1",
      "name":"nehil",
      "gender":"1",
      "birthday":"1991-07-22",
      "business_id":"1",
      "timestamp":"2016-03-23 04:46:42",
      "age":"24"
   },
   {
      "id":"2",
      "name":"vartika ",
      "gender":"2",
      "birthday":"1990-08-14",
      "business_id":"1",
      "timestamp":"2016-03-23 04:46:46",
       "age":"25"
   },
   {
      "id":"3",
      "name":"atharva",
      "gender":"1",
      "birthday":"1992-10-10",
      "business_id":"1",
      "timestamp":"2016-03-23 04:46:49",
       "age":"23"
   },
   {
      "id":"4",
      "name":"karan",
      "gender":"1",
      "birthday":"1992-12-22",
      "business_id":"1",
      "timestamp":"2016-03-23 04:46:52",
      "age":"23"
   }
]
On Gender select if male, I want id of all males from the object and push it in array. 
Later if I select min age as 23 and max age as 24, I want all males with following age to be updated in that array. 
What will be best strategy to achieve this?
Following is my fiddle link - http://jsfiddle.net/Nehil/2ym3ffo0/4/
You can use filter
var arrMale,arrFeMale ; 
arrMale = geGenderData(1)
arrFemale = geGenderData(2)
console.log(arrMale)
console.log(arrFemale)
    function geGenderData(intGenderNum){
        return data.filter(function(oneObj,key){
           return oneObj.gender ==intGender;
        })
    }
Working fiddle;
Similar you can do for age with Min and Max condition
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With