Lets say I have the following map:
let myMap = new Map().set(\'a\', 1).set(\'b\', 2);
And I want to obtain [\'a\', \'b\'] based on the abov
myMap.map(([x,_]) => {x});
Above should also work