Proxies
Learn how to define custom behaviors for fundamental operations with Proxies.
We'll cover the following...
Press + to interact
var x = new Proxy(target,handler)
- our
targetcan be anything, from an object, to a function, to anotherProxy - a
handleris an object which will define the behavior of
Ask