I have a map of objects:
"0": {
    key: 'id',
    value: {
        name: "eval"
        // other variables
    }
},
"1": {
    key: 'id',
    value: {
        name: "help"
        // other variables
    }
} // and so on
I need to find an element in map that's name variable is eqaul to "eval". What's the easiest way to do this?
 
     
     
     
     
    