Skip to content

Commit

Permalink
feat: Object.defineProperty你不知道的一件事
Browse files Browse the repository at this point in the history
  • Loading branch information
左鹏飞 committed Mar 17, 2020
1 parent c136a2d commit 50b9406
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fe/Object.defineProperty你不知道的一件事/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 深入理解Object.defineProperty的value

[左鹏飞](https://github.com/zuopf769) 2020.03.17

## 背景
市面上对于Object.defineProperty的讲解大都集中于下面几个配置项的讲解:

Expand Down Expand Up @@ -89,7 +91,7 @@ obj.push([1, 2], 7, 'hello!');

```

通过如上代码我们就可以知道,用户使用了某个对象上的方法后方法名以及参数我们都可以拦截到,利用这个拦截的过程就可以做一些变化的通知。
通过如上代码我们就可以知道,用户使用了某个对象或者其原型上的方法后,方法名以及参数我们都可以拦截到,利用这个拦截的过程就可以做一些变化的通知。


```
Expand Down

0 comments on commit 50b9406

Please sign in to comment.