use map to get values from array javascript code example
Example 1: node get value from map
let myMap = new Map();
myMap.set("key1", "value1");
myMap.set("key2", "value2");
console.log(myMap.has("key1")); // true
console.log(myMap.has("key2")); // true
console.log(myMap.get("key1")); // value1
console.log(myMap.get("key2")); // value2
// NOTE: DO NOT try to access map values using [].
// myMap["key1"] = "value1";
Example 2: javascripr array.map
array.map( item => item.id )
array2.map( item => item.toString() )
array2.map( item => item * 3 )
// this will apply a transformation to all elements of an array
// "" item => something "" is the transformation (function)