kunci peta untuk mendaftar node js

let keys = Array.from( myMap.keys() );
// ["a", "b"]

let keys =[ ...myMap.keys() ];
// ["a", "b"]
Tomer Mantzuri