Skip to content
Advertisement

How to iterate over a WeakMap?

A JavaScript WeakMap does not allow you to get the key, or the length or size, by design.

Is it possible to nevertheless loop over entries in some way ?

If not .. how does the Chrome console do this ?

enter image description here

Advertisement

Answer

Is it possible to nevertheless loop over entries in some way?

No, as you say, the contents of a WeakMap are not accessible by design, and there is no iterability.

If not … how does the Chrome console do this?

The console uses the debugging API of the JS engine, which allows access to the internals of objects (also to promise states, wrapped primitives, etc.) and many more.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement