Merge pull request #2578 from joaquinelio/patch-15

store vs keeps stored
This commit is contained in:
Ilya Kantor 2021-04-12 10:54:49 +03:00 committed by GitHub
commit 9e52cf3e14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
# WeakMap and WeakSet
As we know from the chapter <info:garbage-collection>, JavaScript engine stores a value in memory while it is reachable (and can potentially be used).
As we know from the chapter <info:garbage-collection>, JavaScript engine keeps a value in memory while it is "reachable" and can potentially be used.
For instance:
```js