Skip to content

Instantly share code, notes, and snippets.

@codeAdrian
Created April 28, 2023 12:40
Show Gist options
  • Save codeAdrian/777b69a76baef34973e9bd38117b8f2a to your computer and use it in GitHub Desktop.
Save codeAdrian/777b69a76baef34973e9bd38117b8f2a to your computer and use it in GitHub Desktop.
const user = {
firstName: "John",
};
const userProxy = new Proxy(user, {});
console.log(userProxy.firstName); // John
userProxy.firstName = "Johnny";
console.log(userProxy.firstName); // Johnny
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment