There is one deliberate bug here.
const cache = new Map();
function getUser(id) {
if (cache[id]) return cache[id];
const user = { id, name: 'Ari' };
cache[id] = user;
return user;
}
Reply with what is broken and how you would fix it.
MechaPrime