What method of the Map object returns an iterator object that contains the keys of the Map?
const map = new Map([[1, 'one'], [2, 'two']]);
const iterator = map._____();
What method of the Map object returns an iterator object that contains the keys of the Map?
const map = new Map([[1, 'one'], [2, 'two']]);
const iterator = map._____();