diff --git a/docs/oop/this.md b/docs/oop/this.md index afe348e..0c62d42 100644 --- a/docs/oop/this.md +++ b/docs/oop/this.md @@ -843,13 +843,6 @@ var obj = { times: [1, 2, 3], print: function () { this.times.forEach(function (n) { ---- -title: this 关键字 -layout: page -category: oop -date: 2016-06-28 -modifiedOn: 2016-06-28 ---- console.log(this.name); }); }