Maps (Hashmaps) in Javascript
MAPS
A map is a data structure which maps values (keys) with other values.In Javascript we can use an Object for this purpose.
Suppose we've to store student's marks, we can use an object for this purpose.
let marks={
"John": 98,
"Arun": 87,
"R...
shivaansh.hashnode.dev2 min read