Proxy
In this lesson, you will learn how to intercept and override operations of objects by using JavaScript proxies.
We'll cover the following...
JavaScript proxies were introduced in 2015 with ECMAScript 6. They allow us to intercept and override operations including object property lookup and assignment. A Proxy
object wraps another object and acts as a middleman.
Proxy
Syntax
A proxy is created using the new Proxy
constructor with two required arguments: the target and the handler.
let proxy = new Proxy(target, handler)
-
target
– The object we wrap -
handler
– An object that defines the methods (also called traps) to control the behaviors of the target
A Proxy
creates an undetectable barrier around the target object that redirects all operations to the handler object.
If we send in ...