SOURCE

//严格模式
let testword = 'global'
function foo(){
    console.log(this.testword)

}
let a ={
    testword:'object testword'
}
foo()
foo.call(a)
console 命令行工具 X clear

                    
>
console