As of ES6, JavaScript has a proper Map object. I don't see a way to use a literal notation though, as you could with an Array or an Object. Am I missing it, or does it not exist?
Array: var arr = ["Foo", "Bar"];
Object: var obj = { foo: "Foo", bar: "Bar" };
Map: ???