How do you remove a key-value pair from a Map object?
const map = new Map([[1, 'one'], [2, 'two']]); map._____(1);
splice
pop
remove
delete