方法在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
Cats萌萌
紫衣仙女
随时随地看视频慕课网APP