0 / 60 seg.

What is the correct way to iterate over the entries of a Map object?

const map = new Map([[1, 'one'], [2, 'two']]);
map._____((value, key) => {
  console.log(key, value);
});