const wm = new WeakMap(); let key = {}; wm.set(key, "hello"); console.log(wm.get(key)); key = null; console.log(wm.has({}));