for of map javascript code example
Example 1: initialize a map js
let map = new Map()
map['bla'] = 'blaa'
map['bla2'] = 'blaaa2'
console.log(map) // Map { bla: 'blaa', bla2: 'blaaa2' }
Example 2: javascript map
The map() method creates a new array with the results of calling a provided function on every element in the calling array.