admin管理员组文章数量:1351976
var StateValue = {
Unknown: 0,
AL: 1,
AK: 2,
AZ: 3,
AR: 4,
CA: 5,
CO: 6,
CT: 7,
DE: 8,
},
Now if i pass 8 i need the value DE to be printed. How can i do this.
var StateValue = {
Unknown: 0,
AL: 1,
AK: 2,
AZ: 3,
AR: 4,
CA: 5,
CO: 6,
CT: 7,
DE: 8,
},
Now if i pass 8 i need the value DE to be printed. How can i do this.
Share Improve this question asked Jun 3, 2011 at 10:40 John CooperJohn Cooper 7,67333 gold badges83 silver badges102 bronze badges 2- 1 You didn't read the link I posted in one of my previous answers, did you? There it is described how to iterate over all properties. At least this is one solution. – Felix Kling Commented Jun 3, 2011 at 10:44
- JavaScript doesn't have enums. I think you're looking to use just a simple array. – Jacob Relkin Commented Jun 3, 2011 at 10:47
1 Answer
Reset to default 9A faster and simpler approach is to use an array:
var StateValues = ['Unknown', 'AL', 'AK', 'AZ', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE'];
alert(StateValues[9]); //'DE'
If for some reason, you need to use your existing structure, try this:
function find_key_by_value(set, value) {
for(var k in set) {
if(set.hasOwnProperty(k)) {
if(set[k] == value) {
return k;
}
}
}
return undefined;
}
alert(find_key_by_value(StateValue, 8));
本文标签: javascriptGetting correspoding enum key for the value passedStack Overflow
版权声明:本文标题:javascript - Getting correspoding enum key for the value passed - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743907925a2559844.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论