Proxies

Use JavaScript proxies

JavaScriptAdvanced
JavaScript
const target = {};
const handler = {
    get: (obj, prop) => prop in obj ? obj[prop] : 'Default'
};
const proxy = new Proxy(target, handler);

Output

// Proxy example

Proxies intercept object operations.