1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 19:22:21 +00:00

Merge pull request #96 from zhangjg/patch-1

Update proxy.md
This commit is contained in:
Ruan YiFeng 2015-10-15 22:09:34 +08:00
commit d82ed9e7f4

View File

@ -823,7 +823,7 @@ Reflect.get(obj, "foo", wrapper);
等同于`delete obj[name]`
**5Refl2ect.construct(target, args)**
**5Reflect.construct(target, args)**
等同于`new target(...args)`这提供了一种不使用new来调用构造函数的方法。