JavaScript Proxies
up:: JavaScript
With proxies, you can monitor objects for changes.
Whenever the object changes, you can intercept the change and modify it.
- target: target object
- key: key of the changed object
- value: value of the changed object
This is the basis for state in Vue, React or Nuxt.