const band = { name: "twenty one pilots" };
const fans = new WeakSet();
fans.add(band);
band.name = "TOP";
console.log(fans.has(band));WebDEV #test #Frontend
Выберите правильный вариант 👇🏼
WE WebDEV @webb_dev · 8.3K subscribers const band = { name: "twenty one pilots" };
const fans = new WeakSet();
fans.add(band);
band.name = "TOP";
console.log(fans.has(band));