If I try to create a Map without calling the constructor, the object is unusable:
const map = Object.create(Map.prototype);
map.entries();
Out of curiosity, I wondered where the entries were stored but the constructor does not seem to add properties:
const map = new Map;
console.log(Object.getPrototypeOf(map) === Map.prototype);
console.log(Object.getOwnPropertyDescriptors(map));
Any idea?