Does JavaScript have a Map literal notation?
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: ???
Solution 1:
No, ES6 does not have a literal notation for Map
s or Set
s.
You will have to use their constructors, passing an iterable (typically an array literal):
var map = new Map([["foo", "Foo"], ["bar", "Bar"], …]);
var set = new Set(["Foo", "Bar", …]);
There are some proposals to add new literal syntax to the language, but none made it into ES6 (and I'm personally not confident they will make it into any future version).
Solution 2:
There is a way to do it, like we do with literals
const fruits = new Map(Object.entries({apples: 1, bananas: 2}))