摘要: this 概述: 在 JavaScript 中,this 是指当前函数中正在执行上下文环境。 正常情况下的 this 默认指向调用函数的对象。 const person = { name: 'Tom', talk() { return this.name; }, }; person.talk(); 阅读全文
posted @ 2022-08-09 10:32 --Odyssey-- 阅读(43) 评论(0) 推荐(0)