摘要: 箭头函数在一下情况中避免使用 使用箭头函数定义对象方法 let obj = { value: 1, getValue: () => console.log(this.value); } obj.getValue(); // undefined 定义原型方法时 function Foo() { thi 阅读全文
posted @ 2020-07-13 23:22 zhongfang99 阅读(103) 评论(0) 推荐(0) 编辑