store vs keeps stored

This commit is contained in:
joaquinelio 2021-04-12 04:30:49 -03:00 committed by GitHub
parent 7b76185892
commit 8b7bf10143
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