Hi FE !
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
Ai
git
前端面试题
前端小tip
  • vite
  • webpack
npm
  • vue2
  • vue3
react
GitHub
  • y004-执行打印

y004-执行打印

let aname = '2'
obj = {
  aname : '1',
  say() {
    console.log(this.aname);
    return function () {
      console.log(this.aname)
      console.log(aname)
    }
  }
}
obj.say()()

1
undefined
2

var aname = '2'
obj = {
  aname : '1',
  say() {
    console.log(this.aname);
    return function () {
      console.log(this.aname)
      console.log(aname)
    }
  }
}
obj.say()()

1
2
2

Edit this page
最近更新: 2025/6/27 02:24
Contributors: qdleader
qdleader
本站总访问量 129823次 | 本站访客数 12人