如何区别JavaScript中的this指向类型一:在函数中直接调用的
直接调用的函数this指向windowfunction greet(text) {
console.log(text);
}
greet("
2021-10-07