I have soo many nested arrays like this
[['branch',12,'name','cofee'],['state',15,'name','tea'],['Country',12,'name','tea']['branch',15,'name','Choclate']]
I want to filter array which is having the element branch so result ll be like this
[['branch',12,'name','cofee'],['branch',15,'name','Choclate']]
can anybody help me on this