I've this array of objects:
var buArray = [{'31': {'1':'VN', '2':'AC'}},
{'33': {'1':'VN', '2':'AC'}},
{'51': {'1':'VN', '2':'AC', '3':'SR', '5':'WIN'}},
{'52': {'1':'VN', '2':'AC', '3':'SR', '4':'JU'}},
{'53': {'1':'VN', '2':'AC', '3':'SR', '5':'WIN'}},
{'54': {'1':'VN', '2':'AC', '3':'SR', '5':'WIN'}},
{'55': {'1':'VN', '2':'AC', '3':'SR', '6':'PP'}}]
How can I access for example to this specific object(with id 31) for example: "{'31': {'1':'VN', '2':'AC'}}" ?
Best Regards,