This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

WeakMap.prototype.delete()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨июль 2015 г.⁩.

Метод delete() удаляет элемент из объекта WeakMap.

Синтаксис

wm.delete(key);

Параметры

key

Обязателен. Ключ элемента, который будет уделён из объекта WeakMap.

Возвращаемое значение

Возвращает true если элемент из объекта WeakMap удалён успешно.

Примеры

Использование метода delete

js
var wm = new WeakMap();
wm.set(window, "foo");

wm.delete(window); // Возвращает true. Успешно удалён.

wm.has(window); // Возвращает false. Объекта window больше нет в WeakMap.

Спецификации

Specification
ECMAScript® 2026 Language Specification
# sec-weakmap.prototype.delete

Совместимость с браузерами

Firefox-specific notes

  • Prior to SpiderMonkey 38, this method threw a TypeError when the key parameter was not an object. This has been fixed in version 38 and later to return false as per latest ES6 standard (Firefox bug 1127827).

Смотрите также