What is the output of the following code?
const map = new Map([[1, 'one'], [true, 'true']]); console.log(map.get(true));
'one'
1
'true'
undefined