I have a question about Javascript’s dictionary. I have a dictionary in which key-value pairs are added dynamically like this:
var Dict = []
var addpair = function (mykey , myvalue) [
Dict.push({
key: mykey,
value: myvalue
});
}
I will call this function and pass it different keys and values. But now I want to retrieve my value based on the key but I am unable to do so. Can anyone tell me the correct way?
var givevalue = function (my_key) {
return Dict["'" +my_key +"'"] // not working
return Dict["'" +my_key +"'"].value // not working
}
As my key is a variable, I can’t use Dict.my_key
Thanks.
Arrays in JavaScript don’t use strings as keys. You will probably find that the value is there, but the key is an integer.
If you make
Dictinto an object, this will work:The
myKeyvariable is already a string, so you don’t need more quotes.