为了解决箭头函数this指向的问题 推出来一种写法 对象的单体模式。
var person = { name:'小马哥', age:12, fav(){ console.log(this.name,this.age); } } person.fav();