I want to create a map object in javascript. I came to idea like the following
var a = new Array();
a["key1"] = "value1";
a["key2"] = "value2";
but then how I can find a particular key exists or not?
|
I want to create a map object in javascript. I came to idea like the following
but then how I can find a particular key exists or not? |
||||
|
|
Don't use an array if you want named keys, use a plain object.
Then:
|
|||
|
|
|
You want to create an Object, not an Array. Like so,
You can check if the key exists in multiple ways:
|
|||||||||||||||||
|
|
|||||
|