Home » JavaScript WeakMap delete() Method

JavaScript WeakMap delete() Method

by Online Tutorials Library

JavaScript WeakMap delete() method

The JavaScript WeakMap delete() method is used to remove the specified element from a WeakMap object.

Syntax

The delete() method is represented by the following syntax:

JavaScript WeakMap delete() method example

Let’s see an example to determine whether the WeakMap object contains the specified element.

Test it Now

Output:

Element present before invoking delete() method: true  Element present after invoking delete() method: false  

You may also like