js Map get code example
Example 1: javascript map array
const myArray = ['Sam', 'Alice', 'Nick', 'Matt'];
const newArray = myArray.map(name => {
return 'My name is ' + name;
});
console.log(newArray);
const anotherArray = myArray.map((value, index) => index + ": " + value);
console.log(anotherArray);
console.log(myArray);
Example 2: node get value from map
let myMap = new Map();
myMap.set("key1", "value1");
myMap.set("key2", "value2");
console.log(myMap.has("key1"));
console.log(myMap.has("key2"));
console.log(myMap.get("key1"));
console.log(myMap.get("key2"));
Example 3: javascript map ket to value
m.set('color', 'red')
m.set('age', 2)