搜索
❯
2026年1月26日1分钟阅读
class c1 { log() { console.log(this); } } let temp = new c1().log; temp(); // undefined