方法在ES6对象中:使用箭头函数
var chopper = { owner: 'Zed', getOwner: function() { return this.owner; }};
var chopper = { owner: 'Zed', getOwner() { return this.owner; }}
var chopper = { owner: 'John', getOwner: () => { return this.owner; }};
var chopper = { owner: 'John', getOwner: () => (this.owner)};
this
紫衣仙女