JavaScript Proxy is an object which intercepts another object and resists the fundamental operations on it. This object is mostly used when we want to hide information about one object from unauthorized access. A Proxy consists of two parts which are its target and handler. A target is a JavaScript object on which the proxy is applied and the handler object contains the function to intercept any other operation on it.
Syntax:
const prox = new Proxy(tar, handle) Parameters: This object accepts two parameters.
- tar: It is the object on which the Proxy is to be applied
- handle: It is the object in which the intercept condition is defined
Returns: A proxy object.
Example 1: Here the method applies a Proxy object with an empty handler.
let details = {
name: "Raj",
Course: "DSA",
}
const prox = new Proxy(details, {})
console.log(prox.name);
console.log(prox.Course);
Output:
Raj
DSAExample 2: Here the method applies a handler function to intercept calls on the target object.
let details = {
name: "Raj",
Course: "DSA",
}
const prox = new Proxy(details, {
get: function(){
return "unauthorized"
}
})
console.log(prox.name);
console.log(prox.Course);
Output:
unauthorized
unauthorizedExample 3: Here the method traps calls on the target object based on the condition.
let details = {
name: "Raj",
Course: "DSA",
}
const proxy = new Proxy(details, {
get: function(tar, prop){
if(prop == "Course"){
return undefined;
}
return tar[prop];
}
});
console.log(proxy.name);
console.log(proxy.Course);
Output:
Raj
undefinedExample 4: This example uses Proxy methods to delete properties.
const courseDetail = {
name: "DSA",
time: "6 months",
status: "Ongoing",
}
const handler = {
deleteProperty(target, prop) {
if (prop in target) {
delete target[prop];
console.log(`Removed: ${prop}`);
}
}
};
const pro = new Proxy(courseDetail, handler);
console.log(pro.name);
delete pro.name
console.log(pro.name);
Output:
DSA
Removed: name
undefinedSupported Browsers:
- Chrome
- Edge
- Firefox
- Opera
- Safari
We have a complete list of JavaScript Proxy methods, to check please go through JavaScript Proxy/handler Reference article.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
