From cc7e1789331f93db105a38dd430e598fae5da638 Mon Sep 17 00:00:00 2001 From: Alex Cory Date: Thu, 5 Dec 2019 22:16:10 -0800 Subject: [PATCH] Update 12-Proxies-and-Reflection.md --- manuscript/12-Proxies-and-Reflection.md | 1 + 1 file changed, 1 insertion(+) diff --git a/manuscript/12-Proxies-and-Reflection.md b/manuscript/12-Proxies-and-Reflection.md index 9ed01899..349dccf9 100644 --- a/manuscript/12-Proxies-and-Reflection.md +++ b/manuscript/12-Proxies-and-Reflection.md @@ -39,6 +39,7 @@ Proxies allow you to intercept low-level object operations on the target that ar The reflection API, represented by the `Reflect` object, is a collection of methods that provide the default behavior for the same low-level operations that proxies can override. There is a `Reflect` method for every proxy trap. Those methods have the same name and are passed the same arguments as their respective proxy traps. Table 11-1 summarizes this behavior. {title="Table 11-1: Proxy traps in JavaScript"} + | Proxy Trap | Overrides the Behavior Of | Default Behavior | |--------------------------|---------------------------|------------------| |`get` | Reading a property value | `Reflect.get()` |