What is the output of the following code?
const map = new Map([[1, 'one'], [2, 'two']]); console.log(map.size);
2
3
4
1