I'm trying to get a property name if I know value from object defined as
expOperators = {
"0": "Select operator",
"GREATERTHAN": "After",
"LESSTHAN": "Before",
"GREATERTHANEQUALTO": "On or After",
"LESSTHANEQUALTO": "On or Before",
"EQUALS": "On",
"BETWEEN": "Between",
"ISNULL": "Is Null",
"ISNOTNULL": "Is not Null"
};
Obviously if I need to find value it would be easy, but I need to accomplish an opposite task, knowing value find out what is the property. Any idea?