WeakMap & WeakSet

What happens to the WeakMap entry after setting obj to null?
const weakMap = new WeakMap();
let obj = { data: 'some data' };

weakMap.set(obj, 'metadata');
obj = null;
Next Question (2/20)