I have an Enum defined in my Javascript as shown below:
BankTypesEnum = {
'Savings': '0',
'HomeLoan': '1',
'Current': '2',
'salary': '3'
}
I want to run $.each()on this and compare with values from another data source. Can someone help me with this?
source
share