this的作用域 Posted on 2017-09-18 ES5非严格模式严格模式1234567'use strict'function thisFn() { console.info('this',this);};thisFn();// ES6 调用者的作用域