Skip to content

Instantly share code, notes, and snippets.

@jansabbe
Last active August 29, 2015 14:21
Show Gist options
  • Save jansabbe/fc91b6d9f44770783112 to your computer and use it in GitHub Desktop.
Save jansabbe/fc91b6d9f44770783112 to your computer and use it in GitHub Desktop.
let handler = {
get(target,name) {
return `Hello ${name}`
}
}
let obj = new Proxy({},handler);
obj.world // Hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment