Is there any key/value pair structure in JavaScript?

Viewed 71105

I want to store information like:

Pseudo-Code

array(manager) = {"Prateek","Rudresh","Prashant"};
array(employee) = {"namit","amit","sushil"};
array(hr) = {"priya","seema","nakul"};

What kind of data structure can I use?

8 Answers
Related