内存泄露
const wm = new WeakMap();const element = document.getElementById('example');
wm.set(element, 'some information');
wm.get(element) // "some information"最后更新于
const wm = new WeakMap();const element = document.getElementById('example');
wm.set(element, 'some information');
wm.get(element) // "some information"最后更新于