Input JSON
0===>{"eid":12,"gender":"1","age":1,"pass":["2","1"]}
1===>{"eid": 11,"gender":"0","age":1,"pass":["1","3"]}
2===>{"eid":20,"gender":"1","age":1,"pass":["2","3"]}
how to create new array.. to push the ids based on the pass numbers
Ex: IN a loop display
passid => 2 .... eid => 12, 20
2 ==> ["12","20"]
1 ==> [12, 11]
3 ==> [11,20]