What is printed with the following snippet?
const map = new Map([[1, 'one'], [2, 'two'], [3, 'three']]);
map.clear();
console.log(map.size);
What is printed with the following snippet?
const map = new Map([[1, 'one'], [2, 'two'], [3, 'three']]);
map.clear();
console.log(map.size);