In this Article we will go through how to create an empty map that does not have properties only using single line of code in JavaScript.
Let's define this short function:
The following map
has __proto__
property
const map = Object.create(null);
The following map
doesn't have any properties
const map = {};