JavaScript Proxy
A JavaScript Proxy is an object that wraps another object and intercepts the fundamental operations of the target object.
syntax:
let proxy = new Proxy(target, handler);
target – is an object to wrap, can be anything, including functions.
handler...
suprabhasupi.hashnode.dev3 min read