GitHub 6521★

Create an empty map that does not have properties

JavaScript version

// `map` doesn't have any properties
const map = Object.create(null);

// The following `map` has `__proto__` property
// const map = {};
Follow me on and to get more useful contents.